2020
09-25
09-25
TP5框架安全机制实例分析
本文实例讲述了TP5框架安全机制。分享给大家供大家参考,具体如下:防止sql注入1、查询条件尽量使用数组方式,具体如下:$wheres=array();$wheres['account']=$account;$wheres['password']=$password;$User->where($wheres)->find();2、如果必须使用字符串,建议使用预处理机制,具体如下:$User=D('UserInfo');$User->where('account="%s"andpassword="%s"',array($account,$password))->find();3、可以使用PDO方式...
继续阅读 >