如何在 php 中显示/回显 html 作为文本,其中包含 utf-8 文本?
我正在尝试显示/回显 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以在文件的开头添加以下行:
You can also add in the very beginning of your file the line:
将字符集指定为 UTF-8:
Specify the charset as UTF-8: