PHP - 如何显示 \n \0 \t \x0B \r

发布于 2024-08-22 05:19:38 字数 20 浏览 6 评论 0原文

如何在网页上显示这些字符?

How can I show these characters on a webpage?

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

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

发布评论

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

评论(2

幸福不弃 2024-08-29 05:19:38
// An example to replace all newlines with their character equivalent
$value = preg_replace('/[\r\n]+/', '\n', $value);
echo htmlentities($value);
// An example to replace all newlines with their character equivalent
$value = preg_replace('/[\r\n]+/', '\n', $value);
echo htmlentities($value);
娇纵 2024-08-29 05:19:38

您能否不执行以下操作...

<?php
echo "\n"."\n";
echo "\0"."\n";
echo "\t"."\n";
echo "\x0B"."\n";
echo "\r"."\n";
?>

预期结果:

\n
\0
\t
\x0B
\r

这应该只是打印到屏幕上,因为 \ 是网页上 \ 的引用。

编辑:

看起来 StackOverflow 会在未标记为代码时自动将 \ 更改为 \!

Can you not do the following...

<?php
echo "\n"."\n";
echo "\0"."\n";
echo "\t"."\n";
echo "\x0B"."\n";
echo "\r"."\n";
?>

Expected Result:

\n
\0
\t
\x0B
\r

and that should just print to screen, since \ is the reference for a \ on web pages.

EDIT:

Looks like StackOverflow auto-changes \ to a \ when not marked as code!

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