1. 程式人生 > >Ubuntu中php安裝XDebug

Ubuntu中php安裝XDebug

(1)安裝xdebug

sudo apt-get install php-xdebug

(2)查詢擴充套件路徑

find /etc/ -name "xdebug.so"

(3)編輯php.ini檔案

php -i | grep "php.ini"

(4)末尾加入以下配置

[xdebug]
zend_extension="擴充套件路徑"
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000

(5)測試info.php

<?php

phpinfo()

?>

瀏覽器輸入http://localhost/info.php