1, 下載 Xdebug
1 |
# 下載位址 |
2 |
# http://xdebug.org/download.php |
3 |
4 |
# 尋找和自己所安裝的 php 版本對應的 Xdebug 下載 |
5 |
# 對於 Windows 版本的 php 可以查看 phpinfo() 函數的列印資訊, 尋找"PHP Extension Build", 看你的 PHP 版本是 VC 幾的, |
2, 安裝
1 |
# 安裝說明頁 |
2 |
# http://xdebug.org/docs/install |
3 |
4 |
# 對於 Windows 版本, 下載完成後將下載的 dll 檔案重新命名為 php_xdebug.dll |
5 |
# 將其複製到 PHP 的擴充目錄中去 (例如: D:Program FilesEasyPHP-5.3.2iphpext ) |
3, 修改 php.ini
01 |
# 在 php.ini 尾部增加一段, 改完之後重啟 Web-Server |
02 |
[Xdebug] |
03 |
zend_extension= "D:/Program Files/EasyPHP-5.3.2i/php/ext/php_xdebug.dll"
|
04 |
05 |
xdebug.profiler_enable=on |
06 |
xdebug.trace_output_dir= "E:/xdebug" ;xdebug 的資料檔案目錄
|
07 |
xdebug.profiler_output_dir= "E:/xdebug" ;xdebug 的資料檔案目錄
|
08 |
xdebug.max_nesting_level = 10000 ;如果設得太小,函數中有遞歸調用自身次數太多時會報超過最大巢狀數錯 |
09 |
10 |
xdebug.remote_enable= true ;Xdebug
|
| xdebug.remote_host=127.0.0.1 ;允許連接的zend studio的IP位址
|
| xdebug.remote_port=9000 ;反向連接zend studio使用的連接埠
|
| xdebug.remote_handler=dbgp ;用於zend studio遠端除錯的應用層通訊協定
|
| Window -> Preferences -> PHP -> Debug
|
| # 將左側 "Default Settings" 中的 "PHP Debugger" 設定為 "XDebug"
|
view source print?
|
2 |
for ( <code>$i = 0; <code>$i <code>$i
| $i
|
3
if ( $i |
|
4
echo 'aa' |
|
5
|
|
6
|
|
7
|
6, 新建一個 Debug 指令
|
1
|
|
2
|
|
3
|
以上就介紹了zend studio 使用斷點調試,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。 🎜 🎜 🎜