PHP + PDO:如果参数为空则绑定 null
我正在尝试这个(并且所有 PoST var 在用户发送之前都会被处理,无需担心 SQL 注入):
$stmt = $con->prepare($sql);
$stmt->bindParam(":1", $this->getPes_cdpessoa());
$stmt->bindParam(":2", $this->getPdf_nupessoa_def());
当这些变量中的任何一个为 NULL 时,PDO 会哭泣并且不允许执行我的语句,并且在我的表上,我允许这些字段可以为空。
有没有什么方法可以检查值是否为空,pdo 只需将 NULL 绑定到(我的意思是,对于每个参数,有一种聪明的方法而不是 if(empty($_POST['blablabla')...) ?
I'm trying this (and all PoST var are treated before user send it, no SQL Injection worries):
$stmt = $con->prepare($sql);
$stmt->bindParam(":1", $this->getPes_cdpessoa());
$stmt->bindParam(":2", $this->getPdf_nupessoa_def());
When any of those vars are NULL, PDO cries and don't let execute my statement, and on my Table, i DO allow these fields beign nullables.
Is there any way to check if the values are empty, pdo just bind NULL to then (and i mean, a smart way instead if(empty($_POST['blablabla')...) for every single param?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试:
另请参阅:
Try:
Also, see:
bindParam
需要向其传递一个实际变量,因为它创建了一个引用。因此,当您的函数返回 null 时,bindParam 实际上没有任何有效的操作。您需要使用
bindValue
来代替。请注意,bindValue
将立即使用您传递给它的任何值,其中bindParam
等待语句执行以实际检索要使用的值。bindParam
needs an actual variable to be passed to it, because it creates a reference. So, when your functions return null, bindParam doesn't really have anything valid to do.You need to use
bindValue
instead. Note thatbindValue
will immediately use whatever value you pass to it, wherebindParam
waits until statement execution to actually retrieve the values to use.替代语法的工作原理:
The Alternative syntax works: