htmlspecialchars()函数在laravel中不起作用

时间:2017-11-13 16:32:50

标签: php html-entities htmlspecialchars

我正在尝试将特殊字符转换为html实体。 这是我的字符串 $string = "cook 'n eat"; 我期待这个输出cook &#039n eat。但输出与输入字符串相同 我使用了htmlspecialchars()htmlentities()

$string = "cook 'n eat";
echo htmlspecialchars($string, ENT_QUOTES);

请告诉我有什么问题以及如何解决。请为所有类型的特殊字符制作解决方案

0 个答案:

没有答案