将函数的返回值传递给 PDO 中的 bindParam

发布于 2024-10-06 23:04:23 字数 256 浏览 2 评论 0原文

bindParam() 似乎没有评估函数,然后将其返回值绑定到准备好的语句的参数,就像这样

$stmt->bindParam('foo', bar());

因此,为了解决这个问题,这样做是一个好习惯吗反而?

$stmt->bindParam('foo', eval(bar()));

或者还有其他人可以推荐做的事情吗?谢谢!

bindParam() doesn't seem to evaluate a function and then bind its return value to the parameter of the prepared statement, like so

$stmt->bindParam('foo', bar());

So, in order to get around this, is it good practice to do this instead?

$stmt->bindParam('foo', eval(bar()));

Or is there something else someone out there can recommend doing? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

海螺姑娘 2024-10-13 23:04:23

最好使用 bindValue() 而不是 bindParam(),它也可以传递值:

$stmt->bindValue('foo', bar());

Better to use bindValue() instead of bindParam(), it can pass values as well:

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