sta*_*low 5 php xampp phpstorm
我刚刚安装了 PHPStorm 并在我的 XAMPP php.ini 中配置了 xDebug:
[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 0
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
xdebug.trace_output_dir = "C:\xampp\tmp"
Run Code Online (Sandbox Code Playgroud)
重新启动 apache,在 PHPStorm 中单击“调试”,控制台中出现此错误:
C:\xampp\php\php.exe -dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port=9000 -dxdebug.remote_host=127.0.0.1 C:/Users/Myuser/AppData/Local/Temp/ide-phpunit.php --no-configuration C:\pwt\pwt-new
Testing started at 2:17 PM ...
Process finished with exit code 255
Run Code Online (Sandbox Code Playgroud)
谷歌搜索说 phpunit 有问题,但我不知道是什么。有任何想法吗 ?