語法: boolis_array(mixed var);
函式種類: PHP 系統功能
內容說明:
若變數為數組類型則返回 true,否則返回 false。
參考:
is_double() is_float() is_int() is_integer() is_long() is_object() is_real() is_string()
實例
<?php
$colors = array("red", "blue", "green");
if(is_array($colors)){
print("colors is an array");
}else{
print("Color is not an array");
}
?>