在页脚中给出的数组null

Page says: Warning: array_search() expects parameter 2 to be array, null given in xxxx/footer.php on line 44

<?php $i++;?>
<?php if(array_search('next_column',$bottom_menu[$i]->classes)!==false) break;>
<?php endwhile;?>

check if $bottom_menu[$i]->classes empty also

<?php $i++;?>
** <?php if(!empty($bottom_menu[$i]->classes)) { ?> **
<?php if(array_search('next_column',$bottom_menu[$i]->classes)!==false) break;>
** <?php } ?> **
<?php endwhile;?>