php中如果要判断一个数组是否为空,可以使用empty()函数或者是count()函数。
如果您想了解更多相关知识,请访问php中文网。
1、使用函数“empty()”函数来判断,将数组传入此函数,如果为true,即代表为空;
$arr = []; if (empty($arr)) { //为空 } else { //不为空 }
2、通过“count()”函数来获取数组条数,再根据条数判断是否小于1,如果小于1,即代表为空;
$arr = []; if (count($arr) < 1) { //为空 } else { //不为空 }
Atas ialah kandungan terperinci php中如何判断一个数组是否为空. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!