I am struggling with displaying some content depending on if an array does have a value or not.Every time the code in the else part is executed. What's wrong here? Is there any syntax error with this code? I'm using php laravel.
foreach($now as $v)
{
$arry[$c++]=$v->Code;
}
if($arry==null){
Do Something
}
else{
Do Something else
}
lengthrather than comparing withnullempty? Sounds like a duplicate of stackoverflow.com/questions/2216052/…empty($arry)or$arry === []construction