這篇文章主要介紹了phpstrom使用xdebug的配置方法,大家參考使用吧
1 到 http://xdebug.org/download.php下載xdebug。注意找到自己對應的php版本。或者可以通過 http://xdebug.org/wizard.php頁面,將phpinfo的信息復制進去,點最下面的分析。它會告訴你要下載哪個版本,然後如何配置。 2.打開php.ini添加以下語句 代碼如下: [XDEBUG] zend_extension = "D:Program Files (x86)php5extphp_xdebug.dll" xdebug.remote_enable=on ; 此地址為IDE所在IP xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 ; 可以是任意Key,這裡設定為PHPSTORM xdebug.idekey="PhpStorm" 3.配置IDE 在Settings裡面,選擇PHP -> Debug,在xdebug裡填入剛才設定的端口,確定即可。 4.配置浏覽器 Chrome上安裝 Xdebug helper 。設置Key等於php.ini所設定的key 5.調試過程:在PhpStorm的run菜單最下面,選擇 Start Listen PHP Debug Connections 開啟監聽。當浏覽器訪問到斷點的地方,就會PhpStorm就會自動響應。