下載xdebug
可到 xdebug官網 下載與本身PHP版本對應的xdebug擴展php
[root] # cd /usr/local/src [root] # tar zxvf xdebug-2.6.0RC2.tgz [root] # cd xdebug-2.6.0RC2 [root] # /usr/local/php/bin/phpize [root] # ./configure --enable-xdebug --with-php-config=/usr/local/php/bin/php-config [root] # make && make install
zend_extension=xdebug.so //指定Xdebug擴展文件的路徑 xdebug.remote_enable=1 //是否開啓遠程調試 xdebug.remote_handler=dbgp //指定遠程調試的處理協議 xdebug.remote_mode=req //能夠設爲req或jit,req表示腳本一開始運行就鏈接遠程客戶端,jit表示腳本出錯時才鏈接遠程客戶端。 xdebug.remote_host=192.168.1.98 //指定遠程調試的主機名(安裝phpstorm的主機ip) xdebug.remote_port=9001 //指定遠程調試的端口號 xdebug.idekey="PHPSTORM" //指定傳遞給DBGp調試器處理程序的IDE Key
其餘配置項見官網phpstorm