问题
this may seem like a simple problem but I couldn't find it in the archives.
how does one reverse the effects of htmlspecialchars?
I tried something like this:
$trans_tbl = get_html_translation_table (HTML_ENTITIES);
$trans_tbl = array_flip ($trans_tbl);
$html = strtr ($html, $trans_tbl);
but it didn't work. is there a simple way to do this?
回答1:
Use htmlspecialchars_decode()
<?php
$str = "<p>this -> "</p>\n";
echo htmlspecialchars_decode($str);
// note that here the quotes aren't converted
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?>
Reference - PHP Official Doc
回答2:
You need htmlspecialchars_decode()
. See PHP docu on this.
$html = htmlspecialchars_decode( $html, ENT_NOQUOTES );
回答3:
example :
echo htmlspecialchars_decode(htmlspecialchars('your "strange" text with characters like !"/$%?&*'))
it will echo : your "strange" text with characters like !"/$%?&*
this is an example of encode/decode. it works.
回答4:
From what I understood, you need htmlspecialchars_decode
- Docu
来源:https://stackoverflow.com/questions/11257232/reverse-htmlspecialchars