如何使用firebug查看php中的会话详细信息?

发布于 2024-12-23 04:50:41 字数 263 浏览 3 评论 0原文

我试图弄清楚我该如何做类似的事情:

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 技术交流群。

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

发布评论

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

评论(2

请别遗忘我 2024-12-30 04:50:41

您可以尝试以下操作:

<script>
    console.log(<?php echo json_encode($_SESSION, JSON_HEX_TAG); ?>);
</script>

不需要引号。另请参阅 Firebug 和日志记录


[编辑,2014 年 5 月] 更新了代码以抵御 XSS 攻击。如果您嵌入 HTML,请始终将 JSON_HEX_TAG 传递给 json_encode,否则攻击者可以通过让您编码如下字符串将代码注入 DOM :

</script><script>alert('Hello!');

You could try this :

<script>
    console.log(<?php echo json_encode($_SESSION, JSON_HEX_TAG); ?>);
</script>

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 to json_encode if you're embedding in HTML, or an attacker could inject code into the DOM by having you encode a string like:

</script><script>alert('Hello!');
妥活 2024-12-30 04:50:41

无法使用 fire bug 查看会话详细信息。

It is not possible to view the session details using fire bug.

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