Returns true if $a is an array : Data Type « Data Type « PHP






Returns true if $a is an array

<?
 $a=array(0=>"zzzz", 
          "a"=>"aaa", 
          "b"=>"bbb", 
          "c"=>"ccc");


 echo(is_array($a));

?>



           
       








Related examples in the same category

1.PHP Data Types
2.gettype() and settype() Data Types
3.Returns true if $a is a floating-point number
4.Returns true if $a is an integer
5.Create Object and check its type
6.Create Object and get its type
7.Returns true if $a is a string
8.is_numeric in action