PHP htmlspecialchars_decode()

1 개요[ | ]

PHP htmlspecialchars_decode()
$str = "<p>this -&gt; &quot;</p>\n";

echo htmlspecialchars_decode($str);
# <p>this -> "</p>

echo htmlspecialchars_decode($str, ENT_NOQUOTES);
# <p>this -> &quot;</p>

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}