将html代码转换成字符串,如何进行转义?
比如将<form action="xxx.php">xxx<input type="text" name="xxx" /><input type="submit" value="xxx"/></form>转成一串字符串,可以传递到某页面执行该代码。
[解决办法]
[解决办法]
html_specialchars转成实体就不会被当做html标签了。
发布时间: 2012-05-27 05:42:30 作者: rapoo
将html代码转换成字符串,如何进行转义?
比如将<form action="xxx.php">xxx<input type="text" name="xxx" /><input type="submit" value="xxx"/></form>转成一串字符串,可以传递到某页面执行该代码。
[解决办法]