3

我有以下代码:

<?php
$dbhost = 'localhost';
$dbuser = 'user';
$dbpass = 'password';
$db = new mysqli($dbhost, $dbuser, $dbpass, 'images_db');
if($db->connect_errno > 0){
die('Unable to connect to database [' . $db->connect_error . ']');
}
else{
echo "Connected to database";
}
//filename, mime_type and file_size are columns in the table images
$stmt = $db->prepare("INSERT INTO images (filename, mime_type, file_size) VALUES (?, ?, ?)");
$string1 = 'string 1';
$string2 = 'string 2';
$stmt->bind_param('ssi', $string1, $string2, 123);
$stmt->execute();
$stmt->close();
$mysqli->close();
?>

当我执行代码时,没有任何东西被添加到 mysql 数据库中。但是当我注释掉这一行时

$stmt->bind_param('ssi', $string1, $string2, 123);

并将字符串和整数值直接插入 $db->prepare 语句(替换问号),这一切都很好,并且该行被添加到数据库表中。

我在阻止将新行添加到数据库的 bind_param 行中做错了什么?

4

2 回答 2

12

mysqli_stmt_bind_param接受变量(通过引用)。您不能使用文字。将您的代码更改为

$fileSize = 123;
$stmt->bind_param('ssi', $string1, $string2, $fileSize);
于 2013-09-10T04:10:59.753 回答
0

请尝试在 bind_param() 之后进行变量赋值。它是通过引用传递的调用。所以它也会在之后工作。

$stmt = $db->prepare("INSERT INTO images (filename, mime_type, file_size) VALUES (?, ?, ?)");
$stmt->bind_param('ssi', $string1, $string2, $num);
$string1 = 'string 1';
$string2 = 'string 2';
$num=123;
$stmt->execute();
于 2013-09-10T04:08:51.247 回答