phpStrom配置斷點除錯
阿新 • • 發佈:2018-12-10
軟體:phpStrom,phpStudy
phpStrom啟用碼
配置步驟:
1.開啟phpStudy,為防止軟體之間的額衝突,可將phpStudy的版本切換為“php-5.4.45-nts + Nginx”
2.在phpStudy中,“其他選項選單”-->"開啟配置檔案"-->"php-ini",在配置檔案中找到“[xDebug]...”這部分程式碼,在其後面新增如下程式碼:(注意根據情況修改路徑)
xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir ="E:\software\phpstudy\tmp\xdebug" xdebug.trace_output_dir ="E:\software\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="E:\software\phpStudy\php\php-5.4.45\ext\php_xdebug.dll" xdebug.remote_autostart = 1 xdebug.remote_port = 9100 xdebug.idekey = PHPSTORM
3.為檢視xDebug是否配置成功,在“其他選項選單”-->"檢視phpinfo",在開啟的頁面中按“Ctrl+F”進行查詢,輸入“xdebug”,若出現有關資訊,則表明xdebug配置成功。
4.開啟phpStrom,進行一些必要的配置:
(1) FIle-->setting-->Editor-->勾選“Change font size with...”
(2) File-->setting-->Editor-->Font-->可修改字型大小
(3)Editor-->General-->Apperance
5.FIle-->Setting-->Language...-->PHP-->port進行埠配置
6. php-->debug-->DBGp Proxy
7.php-->xDebug-->Servers -->點右側左上角的“+”
8.點“Add Configuration ”-->PHP WEb Page-->Server選擇之前起的名字
配置好後,點“Apply”應用
9.點選phpStrom右上角的電話圖示按鈕,
------>
10. 在phpStudy中-->"其他選項選單"--> "開啟配置檔案"-->"nginx--conf"