Extracting files from .phar archive

后端 未结 7 1184
没有蜡笔的小新
没有蜡笔的小新 2021-01-31 07:31

There is something I entirely missed as for phar files. I am installing a project that requires phpunit, pdepend and other dependencies. I fetched them as .phar files. But, I am

7条回答
  •  面向向阳花
    2021-01-31 08:18

    Extending on @pozs’s answer, you can actually use PharData->extractTo in a simple one-liner:

    php -r '$phar = new Phar("phar-file.phar"); $phar->extractTo("./directory");'
    

提交回复
热议问题