gpt4 book ai didi

PHP:如何将数组传递给bind_param

转载 作者:行者123 更新时间:2023-11-29 20:51:19 25 4
gpt4 key购买 nike

我一直在想办法解决这个问题。

$insertSql = 'INSERT INTO table (id,date,name,numFarts) VALUES (?,?,?,?)';
$values = (1,'0000-00-00 00:00:00','Bob',5);
$bind_param_str = ('issi');
if ($stmt = $db->prepare ($insertSql)) { // $inserSql is a pre-writted sql insert
$stmt->bind_param($bind_param_str,$values);
$stmt->execute();
$stmt->close();
}

这不起作用,但我想不出任何其他方法可以通过 $values进入bind_param()

有什么想法吗?

最佳答案

干净的解决方案(PHP5.6+):

$stmt->bind_param($bind_param_str, ...$values);

关于PHP:如何将数组传递给bind_param,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38023907/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com