琢磨了一陣編輯器,然後要要開始準備寫程式,於是debug的議程就提上來了,這次是搭建基於vim 的php編輯平台 ...
--------------------------------------------------------------------------------
| System
| CentOS 5.7
--------------------------------------------------------------------------------
| Editor
| Vim 7.3.456
--------------------------------------------------------------------------------
首先建議自己編譯vim 的版本,因為其中需要開啟+python 和 +sign的支援,還是建議在虛擬機器的linux 裡或者是在開發機上玩好點 ...
配置VIM
CentOS 5.7 上的python 是 2.4版的,我是夠用了,如果需要2.6或者3.0可以另外自行安裝
#yum install python-devel python mercurial
#hg clone https://vim.googlecode.com/hg/ vim
#cd vim
#./configure --prefix=/usr/local/vim --with-features=huge --enable-multibyte --enable-cscope --enable-gui=gtk2 --enable-pythoninterp=yes --with-python-config-dir=/usr/lib/python2.4/config
#vim /etc/profile|- alias vim="/usr/local/vim/bin/vim"
#vim # 進入命令模式:version 查看是不是有 +python 和 +sign,有的話恭喜,沒的話google ...
vim DBGp外掛程式的安裝
http://www.vim.org/scripts/script.php?script_id=2508
install detailsjust copy the debugger.py and debugger.vim to the plugin directory in your home directory $ tar -xzvf debugger.tar.gz $ cp plugin/debugger.* ~/.vim/plugin/
配置 xdebug
#/tmp/lnpp/php/bin/pecl install xdebug
#vim /tmp/lnpp/php/etc/php.ini
[Zend]zend_extension="/tmp/lnpp/php/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so"xdebug.remote_enable=1;xdebug.remote_handler=dbgpxdebug.remote_port = 9001xdebug.remote_host = localhost
注意zend_extension為你自己的路徑
然後重啟php後台服務...
#/tmp/lnpp/php/bin/php -m
查看是不是
[php]Xdebug...[Zend Modules]Xdebug
這樣就可以開始debug 了...
#cd /tmp/lnpp/nginx/html/
#vim phpinfo.php#vim ~/.vimrc |- let g:debuggerPort=9001
把游標停在所要設定斷點的行,進入命令模式:Bp設定斷點 ...
接下來按 F5 開始監聽,圖示如下:
格式為:網頁地址?XDEBUG_SESSION_START=1
詳細可移步以下 :
http://download.csdn.net/detail/qzier_go/4106469
建立了一個lnpp群,歡迎一起學習(QQ群號:213572677)
2012/4/5修訂
php.5.4版本,安裝xdebug前先設定 php.ini 的location
#/tmp/lnpp/php/bin/pear
config-set /tmp/lnpp/php/etc/php.ini
#/tmp/lnpp/php/bin/pecl config-set /tmp/lnpp/php/etc/php.ini
#/tmp/lnpp/php/bin/pecl
install xdebug
Build process completed successfullyInstalling '/tmp/lnpp/php/lib/php/extensions/no-debug-non-zts-20100525/xdebug.so'install ok: channel://pecl.php.net/xdebug-2.2.0RC1Extension xdebug enabled in php.ini
之後開啟php.ini 來進行修改
[xdebug]zend_extension="/tmp/lnpp/lnpp-0.05/php/php-5.4.0/lib/php/extensions/no-debug- non-zts-20100525/xdebug.so";xdebug.show_local_vars=1xdebug.remote_enable=on;xdebug.remote_autostart=1xdebug.remote_handler=dbgp;xdebug.remote_host=localhostxdebug.remote_port=9002xdebug.remote_connect_back = 1xdebug.remote_log=/var/log/xdedug.log
如果需要卸載就用
#/tmp/lnpp/php/bin/pecl
uninstall xdebug
xdebug 的官方網站有些資料
http://xdebug.org/docs/remote
Reference :
https://writer.zoho.com/public/6b6a49b6dcbb8205336873dd09e1b3517a451cd1e1176acb3144f48e4cef0c6b6db04614eed231e5