php pdo execute()里的参数的具体作用?

php菜鸟,php使用pdo连接数据库时,execute(([ array $input_parameters ]) execute里的参数有什么用?

MMMHUHU
浏览 1243回答 3
3回答

慕娘9325324

这个参数是绑定的你在预处理的时候不是要设置传参数吗$sql = "select * from table where :a > ? and :b = ?";$pdostmt = $pdo->prepare($sql);$pdostme->execute(array(':a'=>5,":b"=>3));看懂了吗?在execute()可以什么不传,但是你要用bindParam()这个方法
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

MySQL