if (empty($array)) { // list is empty. }
$arr = array(); if(!empty($arr)){ echo "not empty"; } else { echo "empty"; }