第一步:設定php xdebug擴充
[xdebug]
zend_extension=/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20121212/xdebug.. xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.idekey="sublime.xdebug"
xdebug.remote_bug/var/log/sublime.xdebug"
xdebug.remote_buglog/步驟:安裝sublime xdebugclient(不是xdebug)
第四步:配置sublime xdebug
下面是我的MAC配置
{
"folders":ampah [
{
「 /htdocs"
}
],
"settings":
{
"xdebug": {
"path_mapping": {
:==, "super_globals": true,
"close_on_stop": true,
"port": 9000
}
}
}開啟,第一次不點選開啟,調試無效
第六步:測試調試
在待調試的檔案中加斷點之後,在sublime中tools --> xdebug --> 開始調試。此時在瀏覽器中開啟上方設定步驟中所設定的url:http://127.0.0.1/test.php,進入斷點,完成偵錯。
以上就介紹了mac sublime3+xdebug+firefox調試環境的搭建,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。