我正在为网站开发购物车功能,但偶然发现了这个错误:
致命错误:第 xx 行 ... 中不支持的操作数类型
我认为这可能是因为我在变量和数组中的值之间执行一些数学运算。我不确定如何对数组中的值执行数学运算:
$line_cost = $price * $quantity;
任何人都可以给我任何指导吗?我将不胜感激!这是相关代码 -
<?php session_start(); ?>
<?php
$product_id = $_GET['id'];
$action = $_GET['action'];
switch($action) {
case "add":
$_SESSION['cart'][$product_id]++;
break;
}
?>
<?php
foreach($_SESSION['cart'] as $product_id => $quantity) {
list($name, $description, $price) = getProductInfo($product_id);
echo "$price"; // 20
var_dump($quantity); // "array(2) { ["productid"]=> string(1) "2" ["qty"]=> int(1) }".
$line_cost = $price * $quantity; //Fatal error occurs here
}
?>