没有浏览器转换的php打印字符串

时间:2017-03-16 16:46:39

标签: php firefox browser

如何在不进行任何浏览器转换的情况下将字符串打印到浏览器? 我需要查看字符串中包含的确切字符。

字符串示例可能是:

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()

非常感谢。

1 个答案:

答案 0 :(得分:0)

htmlentities()块中使用<pre>

echo '<pre>';
echo htmlentities($string);
echo '</pre>';

htmlentities()确保按字面显示字符,而<pre>保留字线格式。