如何在不进行任何浏览器转换的情况下将字符串打印到浏览器? 我需要查看字符串中包含的确切字符。
字符串示例可能是:
a% 'sd(d) + s, . a/ sàf d ìda
ds fd fd \td ds dsa s\n
\n\r
\n dfsfds fds 6!"£$%&/()=?^<<dss>dsdsa
我需要在字符串中找到不可见的字符(例如\n
或\r
)。
我还在使用htmlentities()
。
非常感谢。
答案 0 :(得分:0)
在htmlentities()
块中使用<pre>
:
echo '<pre>';
echo htmlentities($string);
echo '</pre>';
htmlentities()
确保按字面显示字符,而<pre>
保留字线格式。