1、下载xdebug http://xdebug.org/download.php2、配置PHP.ini 通过phpinfo(); 查看其中的 Thread Safety 项,这个项目就是查看是否是线程安全,如果是:enabled,一般来说应该是ts版,否则是nts版。php.ini的配置,下面的配置仅供参考,路径要换成自己的![xdebug]zend_extension=”D:\wamp\php-5.6.2-x64\ext\php_xdebug-2.2.5-5.6-vc11-x86_64.dll”xdebug.remote_enable = Onxdebug.remote_handler = dbgpxdebug.remote_host= localhostxdebug.remote_port = 9000xdebug.idekey = PHPSTORMps : php版本和xdebug版本一定要相对应 remote_handler 、 remote...
关于xdebug的说明请参考百度百科:xdebug今天刚把xdebug配置起,这里将xdebug的配置写出来,供大家参考学习。
这里要注意: zend_extension_ts="$YOUR_PHP_PATH\ext\php_xdebug.dll" // php5.2.x用这个
zend_extension="$YOUR_PHP_PATH\ext\php_xdebug.dll" // php5.3.x用这个,没有_ts
如果你用的apache并且安装了zendoptimizer有可能会无法启动apache,要将zendoptimizer配置的zend_extension_ts注释掉; php调试工具一:xdebug下载php调试工具二:wincachegrind [Xdebug]
;dll路径 zend_extension_ts = E:\WebSiteConfig\php\ext\php_xdebug-2.2.0-5.2-vc9....