gpt4 book ai didi

php - fatal error : Uncaught TypeError: count(): Argument #1 ($var) must be of type Countable|array, null 中给出

转载 作者:行者123 更新时间:2023-12-04 16:38:08 28 4
gpt4 key购买 nike

代码运行良好,直到我安装 XAMPP 8 (PHP 8) .我不知道为什么我会收到此错误。请帮忙。

if(isset($_POST["submit"])){
@$subject = $_POST['subject'];
@$term = $_POST['term'];
@$session = $_POST['session'];
@$size = count($_POST['adm_num']);
@$size = count($_POST['ca1']);
@$size = count($_POST['ca2']);
@$size = count($_POST['ca3']);

$i = 0;
while ($i < $size) {
$ca1= $_POST['ca1'][$i];
$ca2= $_POST['ca2'][$i];
$ca3= $_POST['ca3'][$i];
$adm_num = $_POST['adm_num'][$i];
}
}

最佳答案

在使用它之前,您必须使用 array() 定义变量。
或者

if (is_countable($aa) && count($aa) > 0) :

关于php - fatal error : Uncaught TypeError: count(): Argument #1 ($var) must be of type Countable|array, null 中给出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66671269/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com