第一次使用PhpStorm開發,各種配置會讓開發更簡單。
xdebug安裝
第一步:在php.ini中開啟xdubug擴充
[XDebug] xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir ="C:\Program Files\phpStudy\tmp\xdebug" xdebug.trace_output_dir ="C:\Program Files\phpStudy\tmp\xdebug" xdebug.profiler_output_name = "cache.out.%t-%s" xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = "127.0.0.1" zend_extension="C:\Program Files\phpStudy\php53\ext\xdebug.dll"
第二步: 在火狐瀏覽器中加入外掛程式
各瀏覽器對應xdebug外掛請看這裡點選開啟連結
第三步驟:開啟phpstorm如下圖開啟debug
至此,phpstorm使用xdebug配置完成。
打開任一php檔案打個斷點,瀏覽器開啟The easizer xdebug 就可看開始xdebug調試之旅了!
以上就介紹了phpstorm xdebug 調試配置,包含了方面的內容,希望對PHP教程有興趣的朋友有幫助。