程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 解析phpstorm + xdebug 遠程斷點調試

解析phpstorm + xdebug 遠程斷點調試

編輯:PHP綜合
XDEBUG配置:
1.安裝 xdebug 略了。網上有很多資料。
重點寫php.ini的配置
[XDebug]
復制代碼 代碼如下:
zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"
xdebug.default_enable = On
xdebug.collect_params = On
xdebug.remote_connect_back = On           //如果開啟此,將忽略下面的 xdebug.remote_host 的參數。 <一台webserver有多個開發者的工作目錄的時候使用,如:p1.xx.com,p2.xx.com,p3.xx.com 。。。等。 >
xdebug.remote_host = 192.168.59.104    //注意這裡是,客戶端的ip<即IDE的機器的ip,不是你的web server>
xdebug.remote_port = 9900                       //      注意這裡是,客戶端的端口<即IDE的機器的ip,不是你的web server>
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_log = "/var/www/xdebug/xdebug.log"
 xdebug.remote_req = req
 xdebug.auto_trace = Off
 xdebug.remote_autostart = On
 xdebug.show_exception_trace = 0
 xdebug.collect_vars = On
 xdebug.collect_return = On
 xdebug.collect_params = On
 xdebug.var_display_max_depth = 15
 xdebug.show_local_vars = 1
 xdebug.dump_undefined = 1
 xdebug.profiler_enable = 1
 xdebug.profiler_output_dir = /var/www/xdebug

PHPSTORM 配置:
1.file->setings->php|Debug右側。xdebug的那一塊。 設置Debug port:9900(這裡設置 的是,xdebug 吐出的debug信息,通過本機的什麼端口傳輸。)
2.file->setings->php|Servers  右側。  host: 你的web服務器的域名或ip ,端口,  下面的 use path mapping  意的是,你的項目的目錄,對應服務器上的,什麼目錄?   這裡一定要設置哦! 不然,會發生找不到文件而出錯,導至調試終止。
3.Run->Edit Configurations-> 增加一個 PHP WEB APPlication 的調試點。  右側: server 選擇你上面建立的server.  starturl 設置你的入口文件。
至此,配置完畢!
這樣的請求,可以注冊一個調試客戶端哦!
http://www.aihuxi.com/****.php?XDEBUG_SESSION_START=19192
點擊,小蟲子圖標,即可,開始調試!
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved