thinkphp如何防SQL注入 thinkphp防止sql注入

主机教程 建站分享 2年前 (2022-11-12) 212次浏览

文章摘要:thinkphp如何防SQL注入 thinkphp防止sql注入

thinkphp防SQL注入的方法: 1.系统底层对于数据安全方面本身进行了相应的防范机制,例如: $User […]

thinkphp防SQL注入的方法:

1.系统底层对于数据安全方面本身进行了相应的防范机制,例如:

$User = M("User"); // 实例化User对象

$User->find($_GET["id"]);

2.查询条件进行预处理,where方法使用字符串条件时,进行安全过滤,并支持两种方式传入预处理参数,例如:

$Model->where("id=%d and username='%s' and xx='%f'",array($id,$username,$xx))->select();

// 或者

$Model->where("id=%d and username='%s' and xx='%f'",$id,$username,$xx)->select();


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:thinkphp如何防SQL注入 thinkphp防止sql注入
文章链接:http://www.7966.org/post/15141.html
转载请注明出处

喜欢 (0)