网站首页 文章专栏 个人常用的断点调试配置

个人常用的断点调试配置

编辑时间:2020-03-31 16:05:17 作者:苹果 浏览量:2084


    前言:每次配置端点,都要去网上找一个能用的xdebug包,烦死了,还是直接保存自己的网站靠谱。



[xdebug]
zend_extension = .自己的地址\php7.3.4nts\ext\php_xdebug-2.9.3-7.3-vc15-nts-x86_64.dll
xdebug.remote_enable = On
xdebug.remote_host="127.0.0.1"
xdebug.remote_port=9100
xdebug.remote_handler=dbgp
xdebug.idekey="PHPSTORM"
xdebug.profiler_enable = on
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "d:\tmp"

点击下载 :php_xdebug-2.9.3-7.3-vc15-nts-x86_64.dll


或者
在随便一个页面输出一下phpinfo(); Ctrl+A 复制页面的内容到 https://xdebug.org/wizard.php 的文本框内,点击下面的 Analyse my phpinfo() output 按钮获取对应的xdebug.dll文件


    出自:何冰华个人网站

    地址:https://www.hebinghua.com/

    转载请注明出处


来说两句吧
最新评论