發佈日期:

安裝 xdebug for windows

安裝 xdebug 在 windows 需要編譯好的 dll 檔,搭配不同的 php,有許多平台版本可選。

若要自動分析哪個版本,需要剪貼 phpinfo 的頁面文字到下列網站…

http://xdebug.org/find-binary.php

php.ini 需要修改

  • 開啟 zend_extension = “路徑\xampp\php\ext\php_xdebug-2.1.2-5.3-vc9.dll”
  • 開啟 xdebug.remote_enable=1
  • 開啟 xdebug.remote_handler = “dbgp”
  • 開啟 xdebug.remote_host = “localhost”
  • 開啟 xdebug.remote_port = 9000

最後,重啟 apache 即可