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.
JavaScript
x
foreach($now as $v)
{
$arry[$c++]=$v->Code;
}
if($arry==null){
Do Something
}
else{
Do Something else
}
Advertisement
Answer
JavaScript
if ( sizeof($arry) ) { // If more than 0
// Do Something
} else { // If 0
// Do Something else
}