如何使用firebug查看php中的会话详细信息?
我试图弄清楚我该如何做类似的事情:
console.log('<?php print_r($_SESSION); ?>');
在控制台中查看结果。
console.log('<?php echo serialize($_SESSION); ?>');
也不行。有没有办法让我在 firebug 中回显会话信息或在 chrome 中检查元素以进行测试?
I'm trying to figure out I how can do something like:
console.log('<?php print_r($_SESSION); ?>');
To see the results in the console.
console.log('<?php echo serialize($_SESSION); ?>');
does not work either. Is there a way for me to echo the session information in firebug or inspect element in chrome for testing purposes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试以下操作:
不需要引号。另请参阅 Firebug 和日志记录。
[编辑,2014 年 5 月] 更新了代码以抵御 XSS 攻击。如果您嵌入 HTML,请始终将
JSON_HEX_TAG
传递给json_encode
,否则攻击者可以通过让您编码如下字符串将代码注入 DOM :You could try this :
No quotes are required. See as well Firebug and Logging.
[edit, May 2014] Updated the code to be safe against XSS attacks. Always pass
JSON_HEX_TAG
tojson_encode
if you're embedding in HTML, or an attacker could inject code into the DOM by having you encode a string like:无法使用 fire bug 查看会话详细信息。
It is not possible to view the session details using fire bug.