php xdebug trace 调试的问题

发布于 2022-09-06 08:14:39 字数 1712 浏览 16 评论 0

学习xdebug的trace用法,现将遇到的问题写在下面,希望高手指教,谢谢.

环境xdebug +sublime +chrome浏览器+debug helper

php.ini中的配置:

[xdebug]
zend_extension ="D:/wamp64/bin/php/php7.0.10/zend_ext/php_xdebug-2.4.1-7.0-vc14-x86_64.dll"
xdebug.remote_handler = dbgp
xdebug.remote_host = localhost
xdebug.remote_mode = req
xdebug.remote_port = 9000
xdebug.idekey=PHPSTORM

;远程调试
xdebug.remote_enable=ON
xdebug.remote_autostart=on

;开启自动跟踪
xdebug.auto_trace = On ;开启自动跟踪
xdebug.trace_output_dir="E:\xdebug\trace"
xdebug.trace_enable_trigger_value="XDEBUG_TRACE"
xdebug.collect_params = 4
xdebug.collect_includes = On
xdebug.collect_return = On
xdebug.show_mem_delta = On

;把执行情况的分析文件写入到指定目录中
xdebug.profiler_enable=on
xdebug.profiler_output_dir="E:\xdebug\profiler"

被测试的php代码switch.php:

function test($data,$func='strip_tags'){
xdebug_start_trace();
        if(empty($data)){
            return $data;
        }
        //需要对方法进行约束
        switch($func){
            case 'strip_tags':
                $func="strip_tags";
                break;
            case 'intval':
                $func="intval";
                break;
            case 'htmlspecials':
                $func="htmlspecials";
                break;
            default:
                die;
        }
        return $func($data);
xdebug_stop_trace();

}

echo test("<sript>alert('abc');xxxx</script>");

xdebug helper设置:
图片描述

访问地址:http://localhost/NutCloud/demo/php_basic/test/switch.php?XDEBUG_TRACE

为啥我的E:xdebugtrace目录下没有任何文件产生,我哪个环节出了问题?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木緿 2022-09-13 08:14:39

你把代码自动跟踪打开 xdebug.auto_trace=on 配置完要重启PHP,看有输出吗

感情洁癖 2022-09-13 08:14:39

重启过的,不是这块的问题.我发现我的trace文件被存在d:盘下了,真是莫名奇妙.还有一个问题trace里面的时间和现在时间不一致,我在php文件头部加了date_default_timezone_set('PRC');也不管用

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文