Rumah > Artikel > pembangunan bahagian belakang > php如何判断数组不为空
php如何判断数组不为空
1、使用函数“empty()”函数来判断,将数组传入此函数,如果为true,即代表为空;
$arr = []; if (empty($arr)) { //为空 } else { //不为空 }
2、通过“count()”函数来获取数组条数,再根据条数判断是否小于1,如果小于1,即代表为空;
$arr = []; if (count($arr) < 1) { //为空 } else { //不为空 }
推荐教程:《PHP教程》
Atas ialah kandungan terperinci php如何判断数组不为空. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!