📅  最后修改于: 2022-03-11 14:54:35.351000             🧑  作者: Mango
//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');}