简体   繁体   中英

how to display htmlspecialchars in PHP

How would I make this actually display EXACTLY with PHP?

$answer=<script>alert(It converts to HTML.)</script> 
echo "The function is: htmlspecialchars ($answer)."
$variable = <<<'EOS'
$answer=<script>alert(It converts to HTML.)</script> 
echo "The function is: htmlspecialchars ($answer)."
EOS;
echo htmlspecialchars($variable);

This will display the message exactly as you typed it.

$answer = "<script>alert(It converts to HTML.)</script>"

echo "The function is: htmlspecialchars".$answer;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM