php xdebug trace 调试的问题
学习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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你把代码自动跟踪打开 xdebug.auto_trace=on 配置完要重启PHP,看有输出吗
重启过的,不是这块的问题.我发现我的trace文件被存在d:盘下了,真是莫名奇妙.还有一个问题trace里面的时间和现在时间不一致,我在php文件头部加了date_default_timezone_set('PRC');也不管用