📌  相关文章
📜  laravel 检查数组是否为空 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:35.351000             🧑  作者: Mango

代码示例1
//for get() array methods
if($data_array->isEmpty())
{dd('EMPTY');}
else
{dd('NOT EMPTY');}

//for other array
if (count($data_array) > 0) 
{dd('EMPTY');}
else
{dd('NOT EMPTY');}