如何在 php 中显示/回显 html 作为文本,其中包含 utf-8 文本?

发布于 2024-12-02 08:39:24 字数 1256 浏览 0 评论 0原文

我正在尝试显示/回显 html 代码文本,因为它在 php 中。我尝试了 htmlentitied() 函数,但它将整个文本转换为 html 实体。

在我有问题的情况下,我有以下 html 文本:

$html='
<table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"> <tbody><tr> <td>
this is td</td></tr></tbody></table><br/>
The quick brown fox jumps over the lazy dog
<div>敏捷的棕色狐狸跃过懒狗</div><br>
<div>怠惰な犬以上の速い茶色のキツネジャンプ</div><br>
<div>게으른 개를 통해 빠른 갈색 여우 점프</div><br>
<div>ಸೋಮಾರಿಯಾಗಿ ನಾಯಿಗಳು ಮೇಲೆ ಶೀಘ್ರ ಕಂದು ನರಿ ಜಂಪ್</div><br>
<div>게으른 개를 통해 빠른 갈색 여우 점프</div><br>
<div>דער גיך ברוין פוקס שפּרינגען איבער די פויל הינט</div><br>
<div>आलसी कुत्तों पर जल्दी भूरे रंग लोमड़ी कूद</div><br>
<div>ويقفز الثعلب البني السريع فوق الكلب الكسول</div><br>
<div>La cigüeña tocaba el saxofón sobre el perro perezoso</div><br>
<div>দ্রুত বাদামী অলস কুকুরের উপর শিয়াল লাফ</div><br>
<div>השועל החום הזריז לקפוץ מעל כלבים עצלן</div><br>
';

echo htmlentities($html);

上面的代码在输出中给了我很多垃圾文本。有什么办法可以让我得到原来的 utf-8 吗?我正在寻找一些非常强大的东西,比如 stackoverflow 编辑器中的“代码示例”功能。

I'm trying to display/echo html code text as it is in php. I tried htmlentitied() function but it converts the whole text to html entities.

In my problematic situation, I have the following html text:

$html='
<table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"> <tbody><tr> <td>
this is td</td></tr></tbody></table><br/>
The quick brown fox jumps over the lazy dog
<div>敏捷的棕色狐狸跃过懒狗</div><br>
<div>怠惰な犬以上の速い茶色のキツネジャンプ</div><br>
<div>게으른 개를 통해 빠른 갈색 여우 점프</div><br>
<div>ಸೋಮಾರಿಯಾಗಿ ನಾಯಿಗಳು ಮೇಲೆ ಶೀಘ್ರ ಕಂದು ನರಿ ಜಂಪ್</div><br>
<div>게으른 개를 통해 빠른 갈색 여우 점프</div><br>
<div>דער גיך ברוין פוקס שפּרינגען איבער די פויל הינט</div><br>
<div>आलसी कुत्तों पर जल्दी भूरे रंग लोमड़ी कूद</div><br>
<div>ويقفز الثعلب البني السريع فوق الكلب الكسول</div><br>
<div>La cigüeña tocaba el saxofón sobre el perro perezoso</div><br>
<div>দ্রুত বাদামী অলস কুকুরের উপর শিয়াল লাফ</div><br>
<div>השועל החום הזריז לקפוץ מעל כלבים עצלן</div><br>
';

echo htmlentities($html);

The above code gives me lots of garbage text in output. Is there any way I can have that utf-8 as it is? I'm looking for something really powerful like the "code sample" function in stackoverflow editor.

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

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

发布评论

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

评论(2

淤浪 2024-12-09 08:39:24

您还可以在文件的开头添加以下行:

<?php header('Content-type: text/html; charset=utf-8');?>

You can also add in the very beginning of your file the line:

<?php header('Content-type: text/html; charset=utf-8');?>
南…巷孤猫 2024-12-09 08:39:24

将字符集指定为 UTF-8:

echo htmlentities($html, ENT_COMPAT, 'UTF-8');

Specify the charset as UTF-8:

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