Home > Backend Development > PHP Tutorial > php下防止单引号,双引号在接受页面转义的设置方法_php技巧

php下防止单引号,双引号在接受页面转义的设置方法_php技巧

WBOY
Release: 2016-05-17 09:35:12
Original
958 people have browsed it

PHP页面中如果不希望出现以下情况:

单引号被转义为 \'

双引号被转义为 \"

那么可以进行如下设置以防止:

方法一:在PHP.ini中设置:magic_quotes_gpc = Off

方法二: $str=stripcslashes($str)

Related labels:
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