3.2.3 - 致命 - 未处理
$where = array(
'user_email' => ':user_email'
);
$bind = array(
':user_email1' => array(I('pp'), \PDO::PARAM_STR)
);
$R = M('Users')->where($where)
->bind(':user_email', 'xxjjiiee', \PDO::PARAM_STR)
//->bind($bind)
->select();但是会报错addslashes() expects parameter 1 to be string, array given 在ThinkPHP\Library\Think\Db\Driver.class.php 第 1020 行.
希望官方修复下。还有不支持字段的参数绑定有点遗憾了。
