在 PHP 中使用 MySQLi 预处理语句,得到 "No data supplied for parameters in prepared statement "

Using MySQLi prepared statements in PHP, getting "No data supplied for parameters in prepared statement "

我正在尝试更新我的网站以使用准备好的语句,但我一直收到此错误,而且我似乎无法弄清楚原因。我已经在 Google 和 Whosebug 上搜索了一个星期,尝试了我发现的所有内容,但没有任何东西可以解决问题。我确定我只是在某处误解了一些东西。这是产生错误的代码:

$query = "INSERT INTO `$table` (type, name, company, amount, currentbalance, interest, startingbalance, term, frequency, entrymonth, entryyear, notes) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";

echo "Preparing query...";
$addstmt = $db->prepare($query);
echo "(" . $addstmt->errno . ") " . $addstmt->error;
echo "<br>Binding params...";
$addstmt->bind_param('s', empty($type) ? "income" : $type);
$addstmt->bind_param('s', empty($name) ? "" : $name);
$addstmt->bind_param('s', empty($company) ? "" : $company);
$addstmt->bind_param('d', empty($amount) ? 0.0 : $amount);
$addstmt->bind_param('d', empty($currentbalance) ? 0.0 : $currentbalance);
$addstmt->bind_param('d', empty($interest) ? 0.0 : $interest);
$addstmt->bind_param('d', empty($startingbalance) ? 0.0 : $startingbalance);
$addstmt->bind_param('i', empty($term) ? 0 : $term);
$addstmt->bind_param('i', empty($freq) ? 4 : $freq);
$addstmt->bind_param('i', empty($month) ? 0 : $month);
$addstmt->bind_param('i', empty($year) ? 2015 : $year);
$addstmt->bind_param('s', empty($notes) ? "" : $notes);
echo "(" . $addstmt->errno . ") " . $addstmt->error;
echo "<br>Executing statement...";
$result = $addstmt->execute();
echo "(" . $addstmt->errno . ") " . $addstmt->error;

此代码输出以下内容:

Preparing query...(0)
Binding params...(0)
Executing statement...(2031) No data supplied for parameters in prepared statement 

显然,数据库中没有插入任何内容。请帮助我了解我做错了什么。提前谢谢大家。

埃里克

您不必为每个参数重复调用 bind_param,您只需调用一次所有参数即可。

$addstmt->bind_param('sssddddiiiis', $type, $name, $company, $amount, $currentbalance, $interest, $startingbalance, $term, $freq, $month, $year, $notes);

您也不能在参数中使用表达式。参数绑定到引用,所以你必须给变量。要提供默认值,您必须通过设置变量本身来实现,例如

if (empty($type)) {
    $type = "income";
}