如何设置PHP xdebug的php.init配置以优化调试体验?
- 内容介绍
- 文章标签
- 相关推荐
本文共计100个文字,预计阅读时间需要1分钟。
plaintext配置Xdebug:- 将以下代码添加到PHP配置文件中: xdebug.zend_extension=D:/Visual-NMP-x86/Bin/PHP/php-5.3.29-nts-Win32-VC9-x86/ext/php_xdebug.dll xdebug.profiler_enable=1 xdebug.profiler_output_dir=D:/php/wamp/tmp xdebug.idekey=PHPSTORM xdebug.remote_handler=dbgp
[XDebug] zend_extension="D:/Visual-NMP-x86/Bin/PHP/php-5.3.29-nts-Win32-VC9-x86/ext/php_xdebug.dll" xdebug.profiler_enable=1 xdebug.profiler_output_dir="D:\php\wamp\tmp" xdebug.idekey="PHPSTORM" xdebug.remote_handler = "dbgp" xdebug.remote_mode = "req" xdebug.remote_host=localhost xdebug.remote_enable=1 xdebug.remote_port = 9000 xdebug.remote_autostart =0
本文共计100个文字,预计阅读时间需要1分钟。
plaintext配置Xdebug:- 将以下代码添加到PHP配置文件中: xdebug.zend_extension=D:/Visual-NMP-x86/Bin/PHP/php-5.3.29-nts-Win32-VC9-x86/ext/php_xdebug.dll xdebug.profiler_enable=1 xdebug.profiler_output_dir=D:/php/wamp/tmp xdebug.idekey=PHPSTORM xdebug.remote_handler=dbgp
[XDebug] zend_extension="D:/Visual-NMP-x86/Bin/PHP/php-5.3.29-nts-Win32-VC9-x86/ext/php_xdebug.dll" xdebug.profiler_enable=1 xdebug.profiler_output_dir="D:\php\wamp\tmp" xdebug.idekey="PHPSTORM" xdebug.remote_handler = "dbgp" xdebug.remote_mode = "req" xdebug.remote_host=localhost xdebug.remote_enable=1 xdebug.remote_port = 9000 xdebug.remote_autostart =0

