https://xdebug.org/download.php
b. xdebug-client(sublime):
創(chuàng)新互聯(lián)建站專注于花都企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站建設(shè),商城網(wǎng)站建設(shè)?;ǘ季W(wǎng)站建設(shè)公司,為花都等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)
xdebug client
c. xdebug-helper(chrome):
https://chrome.google.com/webstore/detail/xdebug-helper/eadndfjplgieldjbigjakmdgkmoaaaoc
git clone git://github.com/xdebug/xdebug.git
b. 安裝:
b-1. 進(jìn)入目錄:
cd xdebug
b-2. 生成編譯文件:
phpize
b-3. 編譯:
./configure --enable-xdebug --with-php-config=/usr/local/php/bin/php-config
b-4. 安裝:
make && make install
[xdebug]
zend_extension="C:\assembly\appserv\php5\ext\php_xdebug-2.5.3-5.6-vc11.dll"
xdebug.remote_enable = 1
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = req
xdebug.remote_connect_back = 0
b. Xdebug.sublime-settings(sublime):
{
"super_globals": true,
"close_on_stop": true,
"ide_key": "web"
}
c. xdebug.sublime-project(sublime):
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"xdebug":
{
"close_on_stop": true,
"super_globals": true,
"url": "http://localhost"
}
}
}
d. xdebug-helper(chrome):
other--web
ctrl + F8
b. 開啟:
c. 跳到下一個(gè)斷點(diǎn):
ctrl + F8
b. 斷開調(diào)試:
ctrl + shift + F9
c. 跳到下一個(gè)斷點(diǎn):
ctrl + shift + F5