選擇 Xdebug 版本
複製本地 phpinfo()
資訊
$ php -i
黏貼至 檢測頁 獲取下載連結
下載
$ cd ~/soft
$ wget http://xdebug.org/files/xdebug-2.7.2.tgz
解壓
$ tar -xvzf xdebug-2.7.2.tgz
編譯
$ cd xdebug-2.7.2
$ phpize
$ ./configure --with-php-config=/www/server/php/72/bin/php-config
$ make
$ sudo make install
配置
在 php.ini
新增以下內容,並過載服務
[xdebug]
zend_extension = "xdebug.so"
xdebug.remote_autostart = 1
xdebug.remote_enable = 1
xdebug.remote_port = 9001
xdebug.remote_connect_back = 1
xdebug.idekey = phpstorm
驗證
$ php -m | grep xdebug
輸出 xdebug
表示成功