[XDebug]
zend_extension = "D:\wampp\php\ext\php_xdebug.dll"
xdebug.remote_autostart=1
xdebug.remote_enable = On
xdebug.remote_host = "localhost" #本地服务器
xdebug.remote_port = 9001 #默认为9000,防止与php-fpm冲突,改为9001
xdebug.remote_handler = "dbgp"
用sublime 打开你要调试的程序,然后点击导航的project -》save project as 生成一个.sublime-project的文件 然后配置这个文件
{
"folders":
[
{
"path": "/D/xampp/htdocs" #这里应该会自动生成
}
],
"settings":
{
"xdebug": {
"path_mapping": {
}, #本机调试此项不需要设置
"url": "http://localhost/xampp/php.php",#这里为xdebug打开的页面
"super_globals": true,
"close_on_stop": true,
"port": 9001 #此port与之前xdebug扩展一致
}
}
}