PHP + PDO:如果参数为空则绑定 null

发布于 2024-09-16 18:21:34 字数 399 浏览 6 评论 0原文

我正在尝试这个(并且所有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寻找一个思念的角度 2024-09-23 18:21:34

尝试:

$stmt = $con->prepare($sql);
$stmt->bindParam(':1', $this->getPes_cdpessoa(), PDO::PARAM_NULL);
$stmt->bindParam(":2", $this->getPdf_nupessoa_def(), PDO::PARAM_NULL);

另请参阅:

Try:

$stmt = $con->prepare($sql);
$stmt->bindParam(':1', $this->getPes_cdpessoa(), PDO::PARAM_NULL);
$stmt->bindParam(":2", $this->getPdf_nupessoa_def(), PDO::PARAM_NULL);

Also, see:

江挽川 2024-09-23 18:21:34

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 that bindValue will immediately use whatever value you pass to it, where bindParam waits until statement execution to actually retrieve the values to use.

陪我终i 2024-09-23 18:21:34

替代语法的工作原理:

$stmt = $con->prepare($sql);
$stmt->execute(array($this->getPes_cdpessoa(), $this->getPdf_nupessoa_def()));

The Alternative syntax works:

$stmt = $con->prepare($sql);
$stmt->execute(array($this->getPes_cdpessoa(), $this->getPdf_nupessoa_def()));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文