NetBeans中对PHP进行断点调试
更新:HHH   时间:2023-1-7


工具准备:

    NetBeans:http://www.netbeans.org.cn/

    Xdebug  :http://www.xdebug.org/wizard.php

    php5.6  :http://windows.php.net/

说明:Xdebug的版本需跟PHP的版本兼容,可以在本地运行phpinfo(),然后将结果粘贴到http://www.xdebug.org/wizard.php这个页面,会给出对应的版本的下载


PHP中配置Xdebug:

[php_xdebug]
;xdebug的扩展的地址
zend_extension=php_xdebug.dll
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
;远程端口号
xdebug.remote_port=9000

NetBeans的运行结果如下:

返回web开发教程...