我已尝试运行以下CLI命令:
phpunit -d xdebug.profiler_enable=on XYZTestCase.php
但它只是正常运行。谁能指出我正确的方向? THX!
这是XDebug设置:
xdebug
xdebug support => enabled
Version => 2.1.2
Supported protocols => Revision
DBGp - Common DeBuGger Protocol => $Revision: 1.145 $
Directive => Local Value => Master Value
xdebug.auto_trace => Off => Off
xdebug.collect_assignments => Off => Off
xdebug.collect_includes => On => On
xdebug.collect_params => 0 => 0
xdebug.collect_return => Off => Off
xdebug.collect_vars => Off => Off
xdebug.default_enable => On => On
xdebug.dump.COOKIE => no value => no value
xdebug.dump.ENV => no value => no value
xdebug.dump.FILES => no value => no value
xdebug.dump.GET => no value => no value
xdebug.dump.POST => no value => no value
xdebug.dump.REQUEST => no value => no value
xdebug.dump.SERVER => no value => no value
xdebug.dump.SESSION => no value => no value
xdebug.dump_globals => On => On
xdebug.dump_once => On => On
xdebug.dump_undefined => Off => Off
xdebug.extended_info => On => On
xdebug.file_link_format => no value => no value
xdebug.idekey => Nam => no value
xdebug.manual_url => http://www.php.net => http://www.php.net
xdebug.max_nesting_level => 100 => 100
xdebug.overload_var_dump => On => On
xdebug.profiler_aggregate => Off => Off
xdebug.profiler_append => Off => Off
xdebug.profiler_enable => Off => Off
xdebug.profiler_enable_trigger => Off => Off
xdebug.profiler_output_dir => c:/wamp/tmp => c:/wamp/tmp
xdebug.profiler_output_name => cachegrind.out.%t.%p => cachegrind.out.%t.%p
xdebug.remote_autostart => On => On
xdebug.remote_connect_back => Off => Off
xdebug.remote_cookie_expire_time => 3600 => 3600
xdebug.remote_enable => On => On
xdebug.remote_handler => dbgp => dbgp
xdebug.remote_host => localhost => localhost
xdebug.remote_log => no value => no value
xdebug.remote_mode => req => req
xdebug.remote_port => 9000 => 9000
xdebug.scream => Off => Off
xdebug.show_exception_trace => Off => Off
xdebug.show_local_vars => Off => Off
xdebug.show_mem_delta => Off => Off
xdebug.trace_format => 0 => 0
xdebug.trace_options => 0 => 0
xdebug.trace_output_dir => \ => \
xdebug.trace_output_name => trace.%c => trace.%c
xdebug.var_display_max_children => 128 => 128
xdebug.var_display_max_data => 512 => 512
xdebug.var_display_max_depth => 3 => 3
答案 0 :(得分:45)
xdebug.profiler_enable
设置无法在运行时更改,但仅限于脚本的开头。
运行phpunit -d foo=bar
只会导致phpunit调用ini_set("foo", "bar");
,但由于该值在运行时无法更改,因此无效。
启用Xdebug的分析器,该分析器在配置文件输出目录中创建文件。 KCacheGrind可以读取这些文件以可视化您的数据。无法使用ini_set()在脚本中设置此设置。如果您想有选择地启用探查器,请将xdebug.profiler_enable_trigger设置为1而不是使用此设置。
php -d xdebug.profiler_enable=on /usr/bin/phpunit XYZTestCase.php
通过将设置直接应用于PHP运行时而不是phpunit,它将在脚本启动之前设置 并且应该有效。
答案 1 :(得分:8)
花了很多年才试图让它发挥作用。认为这可能会改变我的生活!
我最初试图在一个流浪盒中做这个(即运行phpunit)但是意识到在流浪盒外面运行它更容易(并且性能更快)。
首先,我在mac上使用自制软件使用brew install php55 php55-xdebug
(但您的配置可能不同,它应该仍然有用)。我的网站是一个symfony2项目。
我试图遵循这个:phpunit vagrant xdebug让它在一个流浪者的盒子里工作(几乎到了那里,但有一些问题)。
这些设置适用于我(从流浪盒中运行网站,但在流浪盒外面运行phpunit):
#xdebug.ini (parent machine, not inside vagrant box).
[xdebug]
zend_extension="/usr/local/Cellar/php55-xdebug/2.2.6/xdebug.so" #this will be different on your machine and will probably already be set
xdebug.max_nesting_level = 250
xdebug.default_enable = 1
xdebug.idekey = "PHPSTORM" #seems to work without this too
xdebug.remote_enable = 1
然后在命令行运行它(这里我使用的是phpunit的下载,而不是链接到/ usr / local / bin的那个(这似乎不起作用))
XDEBUG_CONFIG="idekey=PHPSTORM" bin/phpunit -c app
或者您可以创建一个名为phpunit-debug的文件(用于存储XDEBUG_CONFIG环境变量),如下所示:phpunit xdebug
答案 2 :(得分:4)
你有没有尝试过:
重启服务器
通过添加 -d xdebug.idekey = blacktie
来调用脚本phpunit -d xdebug.profiler_enable = on -d xdebug.idekey = blacktie XYZTestCase.php
希望有所帮助。
答案 3 :(得分:2)
设置的正确名称为xdebug.profiler_enable
,带有下划线。将命令更改为:
phpunit -d xdebug.profiler_enable=on XYZTestCase.php
答案 4 :(得分:2)
您可以通过预先设置环境变量从命令行运行Xdebug,例如:
export XDEBUG_CONFIG="idekey=YOUR_IDE_KEY remote_host=localhost remote_enable=1"
这对我有用。
有关Xdebug documentation的更多信息。
答案 5 :(得分:0)
假设您已经使用cookie / post / get变量触发编辑器/独立调试器中的Xdebug,请添加一个shell脚本来执行相同的触发,因此您不必记住:
创建~/bin/php-cli-debug.sh
:
#!/bin/bash
phpfile="$1"
idekey=YOUR_IDE_KEY
shift 1
php -d'xdebug.remote_enable=1' -d'xdebug.remote_autostart=1' -d'xdebug.idekey='"$idekey" -f "$phpfile" -- "$@"
然后在CLI上调试内容,使用类似:
的内容$ php-cli-debug.sh "$(which phpunit)" --bootstrap tests/bootstrap.php tests/FooBarTest | less -S
确保您的.bashrc
已将~/bin
添加到$PATH
。
答案 6 :(得分:0)
首先,我的环境:
的php.ini:
[xdebug]
zend_extension ="c:/wamp64/bin/php/php7.1.16/zend_ext/php_xdebug-2.6.0-7.1-vc14-x86_64.dll"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=0
xdebug.idekey = "PHPSTORM" #seems to work without this too
phpunit.xml:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
</phpunit>
进行运行配置后,单击PHPSTORM中的调试按钮时运行以下命令。
C:\wamp64\bin\php\php7.1.16\php.exe
-dzend_extension=C:\wamp64\bin\php\php7.1.16\zend_ext\php_xdebug-2.6.0-7.1-vc14-x86_64.dll
-dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port=9000 -dxdebug.remote_host=127.0.0.1 C:/wamp64/www/<PROJECT_FOLDER>/vendor/phpunit/phpunit/phpunit --bootstrap C:\wamp64\www\<PROJECT_FOLDER>\vendor\autoload.php --configuration C:\wamp64\www\<PROJECT_FOLDER>\phpunit.xml --teamcity
请注意--teamcity
。我不知道它:)同时注意后退和正斜杠。
我希望这对每个人都有帮助。
答案 7 :(得分:0)
在带有phpStorm的Windows
在命令行中输入以下内容:
set XDEBUG_CONFIG="idekey=PHPSTORM"
这将添加phpStorm将寻找的环境变量。
答案 8 :(得分:0)
在使用VS代码调试器(带有WSL)时,我在终端上唯一需要做的就是执行以下命令:
.csv
之后,我像往常一样简单地运行我的phpunit命令。即export XDEBUG_CONFIG="idekey=VSCODE"
,调试器将在我设置的第一个断点处停止。
如果调试器在无法访问的代码上暂停,则可能要在“调试器”窗格中“断点”下切换“一切”。
我从https://tighten.co/blog/configure-vscode-to-debug-phpunit-tests-with-xdebug那里获得了此信息