php中判断变量是否为数组

if( is_array( $a )) { 
  echo '是数组'; 
} else { 
  echo '不是数组0'; 
}

 

你可能感兴趣的:(php)