我已经在网上搜索了几个小时并尝试了不同的方法,但我无法弄清楚为什么 PDO 不能插入其中一个值包含小数的任何行。
例如,如果输入到成本字段中的值没有十进制值,那么它可以正常工作。但是任何像小数一样的东西,它都会忽略整行。
200 件作品,甚至 200.00 件作品。但是像 39.99 这样的东西没有。
这是代码:
$invoice_id = $db->lastInsertId('id');
$item_name = $_POST['item_name'];
$item_qty = $_POST['item_qty'];
$item_cost = $_POST['item_cost'];
$item_vat = $_POST['item_vat'];
for($i = 0; $i < count($item_name); $i++) {
$item_query = $db->prepare("INSERT INTO hm_invoice_items(invoice, item, qty, amount, vat) VALUES(:invoice, :item, :qty, :amount, :vat)");
$item_query->bindParam(":invoice", $invoice_id);
$item_query->bindParam(":item", $item_name[$i]);
$item_query->bindParam(":qty", $item_qty[$i]);
$item_query->bindParam(":amount", $item_cost[$i]);
$item_query->bindParam(":vat", $item_vat[$i]);
if (!$item_query->execute())
{
die(showMessage("There has been a problem adding the invoice items.", "Error!"));
}
}
var_dump 告诉我插入查询正在接收值,但它不喜欢处理小数。