【发布时间】:2013-12-04 14:43:33
【问题描述】:
我正在运行一个 symfony2 webapp,我尝试使用 XDebug 和 Sublime Text 3,使用 this package,但我遇到的问题是我需要在 URL 中手动写入 XDEBUG_SESSION_START 才能正常工作。 Symfony 有没有办法自动添加它,所以我不会在页面转换中丢失它?
php.ini
[xdebug]
zend_extension = "c:\Program Files (x86)\PHP5\ext\php_xdebug-2.2.2-5.3-vc9.dll"
xdebug.remote_enable = 1
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = req
xdebug.remote_connect_back = 1
xdebug.profiler_enable = 1;
【问题讨论】:
标签: php symfony xdebug sublimetext3