VIM 客戶端配置要點:php
一、VIM要7以上版本,而且必須安裝支持PYTHON。經過vim --version檢查是否支持python,tabs標籤python
二、要關閉防火牆。git
三、XDEBUG FOR VIM去 https://github.com/joonty/vdebug/ 下載github
四、能夠複製安裝在~/.vim下的syntax plugin兩個目錄。vim
五、:bp設置斷點,F5開啓調試。ide
LINUX端PHP配置要點。工具
一、從xdebug.org下載,用phpize。 configure:make make install。安裝debug
二、在php.ini增長調試
[xdebug]utf-8
zend_extension_ts="/wherever/you/put/it/xdebug.so"
Netbeans的配置
一、只要在 「工具」-》「選項」-》PHP-》調試中設置好端口,會話ID就好。
二、服務端PHP.INI也要用相應配置以下:
xdebug.idekey= "netbeans-xdebug"
xdebug.remote_port=9000
xdebug.remote_host=172.16.100.1
附:NETBEANS語法高亮對於PHP而言,只對<?php開始有效,對於 <?開始識別不出來。
另外,VIM UTF-8 亂碼及PHP配色方案配置方法以下:
~.vimrc
set fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1 set enc=utf8 set fencs=utf8,gbk,gb2312,gb18030 set tabstop=2 set sw=2 syntax on colorscheme peachpuff filetype plugin indent on