hbuilder 如何调试PHP

        如何调试PHP

Debug PHP

下载安装xdebug


  • 到http://xdebug.org/download.php 下载适合你的PHP版本的xdebug 
  • 复制到php安装目录的ext文件夹,改名为php_xdebug.dll  
  • 配置xdebug
      在php.ini尾部添加如下
    [xdebug]
    zend_extension="php_xdebug.dll"
    xdebug.remote_enable = On
    xdebug.remote_host = "localhost"
    xdebug.remote_port = 9000
    xdebug.remote_handler = "dbgp"
    xdebug.auto_trace = 1
    xdebug.collect_includes = 1
    xdebug.collect_params = 1
    xdebug.collect_return = 1
    xdebug.default_enable = 1
    xdebug.collect_assignments = 1
    xdebug.collect_vars = 1
    xdebug.remote_autostart = 1
    xdebug.remote_connect_back = 1
    xdebug.show_local_vars = 1
    xdebug.show_exception_trace = 0
  • 运行phpinfo();看有xdebug模块信息出来就是搞定了。

配置HBuilder支持xdebug

这里的配置很重要
  选择工具 → 选项→ HBuilder→编辑器→ PHP →Debug 双击 Xdebug,弹出对话框如下图


Debug Port 设为跟php.ini中设置的一样(默认是9000)。
  Accept remote session(JIT) 选择localhost
  允许浏览器访问网站时zend studio自动打开文件开始调试。
  选项说明:
  off: 关闭浏览器访问时打开调试功能;
  localhost: 通过localhost访问网页的时候打开调试。
  any:只要访问服务器上的php都打开调试;
  prompt:访问服务器上的php时弹出询问是否要调试。
  一旦打开HBuilder允许xebug调试,所有访问php页面都会进入调试。如果你不喜欢这样,可以安装chrome xdebug helper 或 fire fox的easy xdebug参见http://www.weste.net/2013/2-24/89256.html
  

你可能感兴趣的:(hbuilder 如何调试PHP)