我想创建一个可以使用PDO预处理语句将数据插入数据库的函数
public function test() {
$this->insert([
'first_name' => $_POST['first_name'],
'last_name' => $_POST['last_name'],
'email' => $_POST['email']
]);
}
public function insert(array $data) {
$fields = '';
$bindValues = '';
$values = [];
foreach($data as $k => $v) {
$fields .= $k . ', ';
$bindValues .= ':' . $k . ', ';
$values[$k] = $v;
}
$fields = rtrim($fields, ', ');
$bindValues = rtrim($bindValues, ', ');
$insert = $this->db->prepare("
INSERT INTO
:table
(:fields)
VALUES
(:values)
");
$insert->execute([
'table' => $this->table,
$values
]);
}
dumped variables:
1. $fields
2. $bindValues
3. $values
'first_name, last_name, email' (length=28)
':first_name, :last_name, :email' (length=31)
array (size=3)
'first_name' => string 'Nikola' (length=6)
'last_name' => string 'Misic' (length=5)
'email' => string 'mail@mail.com' (length=13)
我收到了错误
在布尔值
上调用成员函数execute()
SQL有问题,我不知道调试它的内容或方法。
答案 0 :(得分:0)
您需要使用类似......
之类的东西来构建SQL$insert = $this->db->prepare("
INSERT INTO
{$this->table}
($fields)
VALUES
($bindValues)
");