扫码下载编程狮APP
<?php $arr = array('www.', 'w3cschool', '.cn'); if(is_array($arr)){ echo '变量 $arr 是一个数组'; } else { echo '变量 $arr 不是一个数组'; } ?>