php HTML转义字符
显示HTML转义字符并还原
$str = htmlentities("<>& *;");
echo $str;
$table = get_html_translation_table(HTML_ENTITIES);
$rev_trans = array_flip($table);
echo strtr($str,$rev_trans);
在HTML表中加入其他转义字符
$str = htmlentities("<>& *;");
echo $str;
$table = get_html_translation_table(HTML_ENTITIES);
$table[" "] = " ";
$encoded = strtr($str, $table);
echo $encoded;
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇:没有了
- 下一篇:没有了
