为什么这个 EOF javascript 代码在回显时没有出现在 html 中?

发布于 2024-11-25 18:04:09 字数 607 浏览 1 评论 0原文

在这个php代码中,我使用heredoc EOF插入一些javascript:

        $room= <<<EOF
<script type="text/javascript" charset="utf-8">
test;
            </script>
EOF;

当我尝试回显$room时,它没有出现:

echo "<li style=\"text-align: center;\"><img src=\"example.com\" width=\"264\" height=\"198\" alt=\"\" /> $room</li>";

($room没有出现在html中)。

但是,如果我对以下内容执行相同操作:

$room= <<<EOF
test;
EOF;

那么单词 test 就会在我的列表 html 元素中得到回显。

编辑-澄清一下,当我第一次尝试回显时,html 源代码中没有出现任何内容(列表出现,但其中没有脚本标签或测试)。

In this php code I use the heredoc EOF to insert some javascript:

        $room= <<<EOF
<script type="text/javascript" charset="utf-8">
test;
            </script>
EOF;

when I try to echo $room it doesn't appear:

echo "<li style=\"text-align: center;\"><img src=\"example.com\" width=\"264\" height=\"198\" alt=\"\" /> $room</li>";

($room doesn't appear in the html).

however if I do the same with:

$room= <<<EOF
test;
EOF;

Then the word test gets echoed in my list html element.

EDIT - to clarify, nothing appears in the source of the html when I do the first echo attempt (the list appears, but no script tags or test inside it).

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

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

发布评论

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

评论(1

雨的味道风的声音 2024-12-02 18:04:09
<script type="text/javascript" charset="utf-8">
  test;
</script>

对于 javascript 来说基本上没有任何意义。我猜你想要(至少在输出任何东西的意义上):

<script type="text/javascript" charset="utf-8">
  document.write('test');
</script>

如果你确实想显示脚本标签,请尝试:

echo '<li style="text-align: center;"><img src="example.com" width="264" height="198" alt="" />', htmlspecialchars($room), '</li>';
<script type="text/javascript" charset="utf-8">
  test;
</script>

basically means nothing to javascript. I'd guess you want (in a sense of outputting anything at least):

<script type="text/javascript" charset="utf-8">
  document.write('test');
</script>

If you literally want to display the script tag, try:

echo '<li style="text-align: center;"><img src="example.com" width="264" height="198" alt="" />', htmlspecialchars($room), '</li>';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文