PHP中怎么转义,大拿请帮忙!
程序员文章站
2024-01-23 12:38:46
...
PHP中如何转义,大拿请帮忙!!!急急急!!!
以下new_content是mysql中使用select返回的内容
请问如何将其中的转换成<script>和</script>
------解决方案--------------------
htmlspecialchars这个函数可以转义
------解决方案--------------------
以下new_content是mysql中使用select返回的内容
$new_content='下面我给大家讲讲javascript函数:
结果如图:
';
请问如何将其中的转换成<script>和</script>
------解决方案--------------------
htmlspecialchars这个函数可以转义
------解决方案--------------------
$new_content='下面我给大家讲讲javascript函数:
结果如图:
';
var_dump(preg_replace_callback('//i', function($r){return htmlentities($r[0]);}, $new_content)) ;
相关文章
相关视频
上一篇: 两个