Home > Backend Development > PHP Tutorial > An in-depth explanation of PHP magic quotes_PHP Tutorial

An in-depth explanation of PHP magic quotes_PHP Tutorial

WBOY
Release: 2016-07-21 15:06:24
Original
1178 people have browsed it

I checked the manual specifically. Regarding php magic quotes, the common settings are as follows, magic_quotes_gpc, magic_quotes_sybase, magic_quote_runtime. These functions are configured in php.ini. From the manual, it can be seen that from php5. These features have been abolished after version 3, so we strongly advise you not to use them and turn them off in php.ini.

php.ini中magic quotes设置

The purpose of these functions is to escape data. When preventing sql injection, many people will write like this:

Copy code The code is as follows:

if(!get_magic_quotes_gpc() ){
$post=addslashes($post);
}

If you enable them, single quotes ('), double quotes ("), Backslash () and NUL (null character) are actually equivalent to calling the addslashes function. You may say that this is not very good, and it is safer, but have you considered code portability? In addition, for the above? Is it necessary for you to escape all the data of gpc ($_GET, $_POST, $_COOKIE)? How much is the overhead? The following is a detailed explanation of Magic Quotes in the manual:

1.magic_quotes_gpc

magic_quotes_gpc is used to set the magic quote status of GPC ($_GET, $_POST, $_COOKIE) (also includes $_ENV in PHP4). When turned on, all single-quote, double quote, backslash and NUL's will be automatically escaped by backslash. When magic_quote_sybase is on, only single-quote. quote) will be escaped by single quotes as '', while double quotes, backslash and NUL's are not affected and will not be escaped.

magic_quotes_gpc教程

2.magic_quote_runtime

magic_quote_runtime If this option is turned on, many functions that return external data (database, text) will be backslash escaped. If magic_quote_sybase is also enabled, only single quotes (single-quote) will be escaped by single quotes.

magic_quote_runtime教程

3.magic_quotes_sybase

magic_quotes_sybase If you set this option to enable, when magic_quotes_gpc, magic_quotes_runtime are enabled, single quotes will be transferred by single quotes instead of escaped by backslashes. At the same time, this setting will completely override the setting of magic_quotes_gpc. Even if magic_quotes_gpc is set to on, double quotes ", backslashes and NUL's will not be escaped.

magic_quotes_sybase教程

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327609.htmlTechArticle I checked the manual specifically. Regarding php magic quotes, the common settings are as follows, magic_quotes_gpc, magic_quotes_sybase, magic_quote_runtime, These functions are configured in php.ini...
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