当前位置:Gxlcms > PHP教程 > php输出html时转义,该怎么处理

php输出html时转义,该怎么处理

时间:2021-07-01 10:21:17 帮助过:3人阅读

php输出html时转义
比如:
输出后:<img src="https://www.gxlcms.com/test/logo.gif"> 类似这样的,
我是输出到XML,然后flash读取的,请高手帮忙

------解决方案--------------------
htmlentities
------解决方案--------------------
htmlentities
------解决方案--------------------
htmlentities

------解决方案--------------------
PHP code

$str = "A 'quote' is bold";
// Outputs: A 'quote' is <b>bold</b>
echo htmlentities($str);


$new = htmlspecialchars("Test", ENT_QUOTES);
echo $new; // <a href='test'>Test</a>                     

人气教程排行