Phpstorm&x2B;xdebug=进程已完成,退出代码为255

Phpstorm&x2B;xdebug=进程已完成,退出代码为255,php,xampp,phpstorm,Php,Xampp,Phpstorm,我刚刚在XAMPP php.ini中安装了PHPStorm并配置了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_

我刚刚在XAMPP php.ini中安装了PHPStorm并配置了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"
重新启动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
谷歌说phpunit有问题,但我不知道是什么。
有什么想法吗?

查看PHP的错误日志,以获得一些提示。它可能是任何东西——丢失的文件;PHP配置错误(缺少扩展等);PHP错误(segfault)。另外,您还可以通过调试按钮运行PHPUnit测试,并实际调试PHPUnit代码,以查看失败的地方。您找到了这个问题的答案吗?