Home > Backend Development > PHP Tutorial > PHP中如何转义,大拿请帮忙!

PHP中如何转义,大拿请帮忙!

WBOY
Release: 2016-06-23 13:58:49
Original
864 people have browsed it

以下new_content是mysql中使用select返回的内容

$new_content='<P>下面我给大家讲讲javascript函数:</P><PRE class=js name="code"><script> <BR>function show() <BR>{ <BR>alert("hello world"); <BR>} <BR></script>
Copy after login
Copy after login

结果如图:
tu1

';
请问如何将其中的<script>和</script>转换成<script>和</script>


回复讨论(解决方案)

htmlspecialchars这个函数可以转义

$new_content='<P>下面我给大家讲讲javascript函数:</P><PRE class=js name="code"><script> <BR>function show() <BR>{ <BR>alert("hello world"); <BR>} <BR></script>
Copy after login
Copy after login

结果如图:
tu1

';var_dump(preg_replace_callback('/<\/?script>/i', function($r){return htmlentities($r[0]);}, $new_content)) ;

2#大牛,你好,能不能请你回答一下这个问题,http://bbs.csdn.net/topics/390762602,这是问题详细的阐述,真的搞不懂啊!!!php读数据库肿么了,,,,

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template