本文介绍了PHP的回声尖括号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要在页面上显示文本,文本应如下所示:
I want to display text on the page, the text should look like this:
<sometext>
...但是当我回声时,什么也没出现!
<sometext>
... but when I echo this, nothing appears!!
我该怎么办?
推荐答案
页面"是用HTML编写的,因此<
的意思是启动标签".
A "page" is written in HTML, so <
means "Start a tag".
您必须使用实体来表示具有特殊含义的HTML字符.
您可以直接编写它们,也可以使用 htmlspecialchars 函数.
You can write them directly, or make use of the htmlspecialchars function.
echo "<sometext>";
echo htmlspecialchars("<sometext>");
这篇关于PHP的回声尖括号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!