Heim  >  Artikel  >  Backend-Entwicklung  >  mysql查询与插入数据单引号的问题分析

mysql查询与插入数据单引号的问题分析

WBOY
WBOYOriginal
2016-07-25 09:00:211371Durchsuche
有关mysql查询或插入数据时遇到单引号的问题,我们用到最多的三个函数就是mysql_real_escape_string、addslashes以及mysql_escape_string,来处理相关问题。

本文主要介绍mysql_real_escape_string对用户提交的表单数据进行转义处理。 并介绍addslashes以及mysql_escape_string这3个类似功能的函数用法区别。

Mysql查询带引号和不带引号区别 当数据库字段ID为整型时 select ID from table where ID=1 和 select ID from table where ID='1' 两条sql都是可以的,但是第一条sql不用进行隐式转换,速度上比第二条sql略快一些

向mysql数据库中插入带单引号字符串,什么错也没报就是语句执行失败,原因在于单引号等要转义,可以使用函数:mysql_real_escape_string和addslashes函数; 在sql防注入方面,addslashes的问题在于黑客可以用0xbf27来代替单引号,而addslashes只是将0xbf27修改为0xbf5c27,成为一个有效的多字节字符,其中的0xbf5c仍会被看作是单引号,所以addslashes无法成功拦截。

当然addslashes也不是毫无用处,它是用于单字节字符串的处理,多字节字符还是用mysql_real_escape_string吧。

php手册中get_magic_quotes_gpc的例子:

<?php
if (!get_magic_quotes_gpc()) {
$lastname = addslashes($_POST["lastname"]);
} else {
$lastname = $_POST['lastname'];
}
?>

在magic_quotes_gpc已经开放的情况下,还是对$_POST['lastname']进行检查一下。

mysql_real_escape_string和mysql_escape_string这2个函数的区别: mysql_real_escape_string 必须在(PHP 4 >= 4.3.0, PHP 5)的情况下才能使用。否则只能用 mysql_escape_string ,两者的区别是: mysql_real_escape_string 考虑到连接的当前字符集,而mysql_escape_string 不考虑。

总结: addslashes() 是强行加; mysql_real_escape_string() 会判断字符集,但是对PHP版本有要求; mysql_escape_string不考虑连接的当前字符集。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn