php magic_quotes_gpc的一点认识与分析


Posted in PHP onAugust 18, 2008

blankyao 说“学习的过程就是不断的发现错误,不断的改正错误”;

先看下手册上怎么说的吧!

对一般人来说看下前两段就可以了

Magic Quotes

代码:
Magic Quotes is a process that automagically escapes incoming data to the PHP script. It's preferred to code with magic quotes off and to instead escape the data at runtime, as needed.
What are Magic Quotes

代码:
When on, all ' (single-quote), " (double quote), \ (backslash) and NULL characters are escaped with a backslash automatically. This is identical to what addslashes() does.

There are three magic quote directives:
magic_quotes_gpc

代码:
Affects HTTP Request data (GET, POST, and COOKIE). Cannot be set at runtime, and defaults to on in PHP.
magic_quotes_runtime

代码:
If enabled, most functions that return data from an external source, including databases and text files, will have quotes escaped with a backslash. Can be set at runtime, and defaults to off in PHP.
magic_quotes_sybase

代码:
If enabled, a single-quote is escaped with a single-quote instead of a backslash. If on, it completely overrides magic_quotes_gpc. Having both directives enabled means only single quotes are escaped as ''. Double quotes, backslashes and NULL's will remain untouched and unescaped.
Why use Magic Quotes

1 Useful for beginners

Magic quotes are implemented in PHP to help code written by beginners from being dangerous. Although SQL Injection is still possible with magic quotes on, the risk is reduced.

2Convenience

For inserting data into a database, magic quotes essentially runs addslashes() on all Get, Post, and Cookie data, and does so automagically.

Why not to use Magic Quotes

1 Portability

代码:
Assuming it to be on, or off, affects portability. Use get_magic_quotes_gpc() to check for this, and code accordingly.
2 Performance

代码:
Because not every piece of escaped data is inserted into a database, there is a performance loss for escaping all this data. Simply calling on the escaping functions (like addslashes()) at runtime is more efficient.

Although php.ini-dist enables these directives by default, php.ini-recommended disables it. This recommendation is mainly due to performance reasons.
3 Inconvenience

代码:
Because not all data needs escaping, it's often annoying to see escaped data where it shouldn't be. For example, emailing from a form, and seeing a bunch of \' within the email. To fix, this may require excessive use of stripslashes().
这些英文实在是需要像我这类人有足够的耐心啊(不是说我有耐心,而是我英语烂),刚才也说了,对于一般人只看下前两段就可以了,特别是我用红色标出来的字!!!

另外,特别注意的是,魔术引用发生作用是在传递$_GET,$_POST,$_COOKIE时

下面是案例

代码:
1.
条件: magic_quotes_gpc=off
写入数据库的字符串未经过任何过滤处理。从数据库读出的字符串也未作任何处理。

数据:  $data="snow''''sun" ; (snow和sun之间是四个连续的单引号).

操作: 将字符串:"snow''''sun" 写入数据库,

结果: 出现sql语句错误,mysql不能顺利完成sql语句,写入数据库失败。

数据库保存格式:无数据。

输出数据格式:无数据。

说明: 对于未经处理的单引号在写入数据库时会使sql语句发生错误。

代码:
2.
条件: magic_quotes_gpc=off
写入数据库的字符串经过函数addslashes()处理。从数据库读出的字符串未作任何处理。

数据:  $data="snow''''sun" ; (snow和sun之间是四个连续的单引号).

操作: 将字符串:"snow''''sun" 写入数据库,

结果: sql语句顺利执行,数据成功写入数据库

数据库保存格式:snow''''sun (和输入一样)

输出数据格式:snow''''sun (和输入一样)

说明: addslashes()函数将单引号转换为\'的转义字符使sql语句成功执行,
但\'并未作为数据存入数据库,数据库保存的是snow''''sun 而并不是我们想象的snow\'\'\'\'sun

代码:
3.
条件: magic_quotes_gpc=on
写入数据库的字符串未经过任何处理。从数据库读出的字符串未作任何处理。

数据:  $data="snow''''sun" ; (snow和sun之间是四个连续的单引号).

操作: 将字符串:"snow''''sun" 写入数据库,

结果: sql语句顺利执行,数据成功写入数据库

数据库保存格式:snow''''sun (和输入一样)

输出数据格式:snow''''sun (和输入一样)

说明: magic_quotes_gpc=on 将单引号转换为\'的转义字符使sql语句成功执行,
但\'并未作为数据入数据库,数据库保存的是snow''''sun而并不是我们想象的snow\'\'\'\'sun。

代码:
4.
条件: magic_quotes_gpc=on
写入数据库的字符串经过函数addlashes()处理。从数据库读出的字符串未作任何处理。

数据:  $data="snow''''sun" ; (snow和sun之间是四个连续的单引号).

操作: 将字符串:"snow''''sun" 写入数据库,

结果: sql语句顺利执行,数据成功写入数据库

数据库保存格式:snow\'\'\'\'sun (添加了转义字符)

输出数据格式:snow\'\'\'\'sun (添加了转义字符)

说明: magic_quotes_gpc=on 将单引号转换为\'的转义字符使sql语句成功执行,
addslashes又将即将写入数据库的单引号转换为\',后者的转换被作为数据写入
数据库,数据库保存的是snow\'\'\'\'sun
总结如下:

1. 对于magic_quotes_gpc=on的情况,

我们可以不对输入和输出数据库的字符串数据作
addslashes()和stripslashes()的操作,数据也会正常显示。

如果此时你对输入的数据作了addslashes()处理,
那么在输出的时候就必须使用stripslashes()去掉多余的反斜杠。

2. 对于magic_quotes_gpc=off 的情况

必须使用addslashes()对输入数据进行处理,但并不需要使用stripslashes()格式化输出
因为addslashes()并未将反斜杠一起写入数据库,只是帮助mysql完成了sql语句的执行。

补充:

magic_quotes_gpc 作用范围是:WEB客户服务端;作用时间:请求开始时,例如当脚本运行时.
magic_quotes_runtime 作用范围:从文件中读取的数据或执行exec()的结果或是从SQL查询中得到的;作用时间:每次当脚本访问运行状态中产生的数据

PHP 相关文章推荐
第十五节--Zend引擎的发展
Nov 16 PHP
纯php打造的tab选项卡效果代码(不用js)
Dec 29 PHP
适用于php-5.2 的 php.ini 中文版[金步国翻译]
Apr 17 PHP
第五章 php数组操作
Dec 30 PHP
php 修改、增加xml结点属性的实现代码
Oct 22 PHP
php递归函数中使用return的注意事项
Jan 17 PHP
Codeigniter上传图片出现“You did not select a file to upload”错误解决办法
Jun 12 PHP
ThinkPHP3.1新特性之多层MVC的支持
Jun 19 PHP
php在windows环境下获得cpu内存实时使用率(推荐)
Feb 08 PHP
PHP使用curl_multi_select解决curl_multi网页假死问题的方法
Aug 15 PHP
PHP精确到毫秒秒杀倒计时实例详解
Mar 14 PHP
PHP pthreads v3使用中的一些坑和注意点分析
Feb 21 PHP
php数组应用之比较两个时间的相减排序
Aug 18 #PHP
php中的数组操作函数整理
Aug 18 #PHP
PHP去除数组中重复的元素并按键名排序函数
Aug 18 #PHP
删除数组元素实用的PHP数组函数
Aug 18 #PHP
PHP 数组实例说明
Aug 18 #PHP
PHP获取网站域名和地址的代码
Aug 17 #PHP
php二分法在IP地址查询中的应用
Aug 12 #PHP
You might like
PHP中通过HTTP_USER_AGENT判断是否为手机移动终端的函数代码
2013/02/14 PHP
ThinkPHP实现带验证码的文件上传功能实例
2014/11/01 PHP
PHP编程快速实现数组去重的方法详解
2017/07/22 PHP
PHP后门隐藏的一些技巧总结
2020/11/04 PHP
为数据添加append,remove功能
2006/10/03 Javascript
javascript 动态table添加colspan\rowspan 参数的方法
2009/07/25 Javascript
ASP.NET jQuery 实例15 通过控件CustomValidator验证CheckBoxList
2012/02/03 Javascript
JS刷新框架外页面七种实现代码
2013/02/18 Javascript
JavaScript获取网页支持表单字符集的方法
2015/04/02 Javascript
js滚轮事件兼容性问题需要注意哪些
2016/11/15 Javascript
js实现刷新页面后回到记录时滚动条的位置【两种方案可选】
2016/12/12 Javascript
javascript中BOM基础知识总结
2017/02/14 Javascript
详解Vue 2.0封装axios笔记
2017/06/22 Javascript
文本溢出插件jquery.dotdotdot.js使用方法详解
2017/06/22 jQuery
利用babel将es6语法转es5的简单示例
2017/12/01 Javascript
详解React 条件渲染
2020/07/08 Javascript
python调用短信猫控件实现发短信功能实例
2014/07/04 Python
python删除列表中重复记录的方法
2015/04/28 Python
python使用socket向客户端发送数据的方法
2015/04/29 Python
Python脚本暴力破解栅栏密码
2015/10/19 Python
Python通过Pygame绘制移动的矩形实例代码
2018/01/03 Python
Python实现的将文件每一列写入列表功能示例【测试可用】
2018/03/19 Python
pymongo中group by的操作方法教程
2019/03/22 Python
selenium+python环境配置教程详解
2019/05/28 Python
Python字典底层实现原理详解
2019/12/18 Python
python ssh 执行shell命令的示例
2020/09/29 Python
美国专注于健康商品的网站:eVitamins
2017/01/23 全球购物
Big Green Smile德国网上商店:提供各种天然产品
2018/05/23 全球购物
5.1手机促销活动
2014/01/17 职场文书
五年级英语教学反思
2014/01/31 职场文书
四年级学生评语大全
2014/04/21 职场文书
《灰椋鸟》教学反思
2014/04/27 职场文书
公路绿化方案
2014/05/12 职场文书
师德师风的心得体会
2014/09/02 职场文书
2015关爱留守儿童工作总结
2014/12/12 职场文书
BCL经典机 SONY ICF-5900W电路分析
2022/04/24 无线电