提问人:Giuls 提问时间:8/30/2018 最后编辑:RiggsFollyGiuls 更新时间:8/30/2018 访问量:933
未定义的偏移量:0 - Ajax 响应中的 PHP 错误 [重复]
Undefined offset: 0 - PHP Errors in Ajax Response [duplicate]
问:
我确信这是一个简单的修复方法,但我似乎无法弄清楚。错误是Undefined offset: 0
我的代码确实有效,但在浏览器控制台中出现此错误。我尝试在这里查看此答案并声明变量,但是它仍然触发了错误。我是否遗漏了一些明显的东西?
我尝试通过添加和添加来声明,但他们似乎没有做出任何改变。$product_id= $_POST['id'] ?? '';
$product_id = 0;
谁能帮我?
function checking_items() {
if( isset($_POST['id']) && $_POST['id'] > 0 ){
// Initialising variables
$counts = array();
$product_id = $_POST['id'];
$categories = array('protein', 'pantry');
// Loop through cart for product categories count
foreach ( WC()->cart->get_cart() as $cart_item ) {
if ( has_term( $categories[0], 'product_cat', $cart_item['product_id'] ) )
$counts[0] += $cart_item['quantity'];
if ( has_term( $categories[1], 'product_cat', $cart_item['product_id'] ) )
$counts[1] += $cart_item['quantity'];
}
// Return the product category count that belongs to the added item
if( has_term( $categories[0], 'product_cat', $product_id ) )
echo json_encode(array(strtoupper($categories[0]) => $counts[0])); // Returned value to jQuery
if( has_term( $categories[1], 'product_cat', $product_id ) )
echo json_encode(array(strtoupper($categories[1]) => $counts[1])); // Returned value to jQuery
}
die(); // To avoid server error 500
}
答:
1赞
MonkeyZeus
8/30/2018
#1
您需要正确启动:$counts
$counts = array(0,0);
因为您当前正在尝试增加一个不存在的位置:
// This doesn't work when position zero doesn't exist.
$counts[0] += $cart_item['quantity'];
同样的事情也适用于您的生产线。$counts[1] +=
评论
0赞
Giuls
8/30/2018
是否需要在 IF 语句之外启动?$counts = array(0,0);
0赞
MonkeyZeus
8/30/2018
在你尝试使用它之前,它只需要存在。你把它放在哪里就好了。
1赞
Giuls
8/30/2018
这奏效了!谢谢@MonkeyZeus。
评论
$_POST['id']
$counts[0]
$_POST['id']
$counts[0] += $cart_item['quantity'];