我在Windows 10计算机上使用Apache 2.4设置了PHP 7.0.7的x64(TS-Thread Safe)版本。 PHP运行正常。 我从https://phpunit.de/下载了phpunit.phar(PHPUnit 5.4),其中声明PHP 7支持PHPUnit 5.4。 我设置了Windows环境变量,以便可以通过命令行访问PHP。 当我执行以下命令时:
echo @php "%~dp0phpunit.phar" %* > phpunit.cmd
它生成phpunit.cmd没有任何问题。
之后我执行:phpunit --version
它给我错误:无法打开文件phpunit.phar
有没有人遇到过类似的问题,或者有什么我可能做错了?
答案 0 :(得分:0)
我不得不将phpunit-5.4.4.phar的文件名更改为phpunit.phar。 在命令中它是: echo @php“%~dp0phpunit.phar”%*> phpunit.cmd 所以将文件名更改为phpunit.phar可以解决问题。 PHPUnit运行正常。
干杯:)