An associative array is little bit different from regular array as in c and many language.
An array is a collection of similar data type which can be read by index
i.e. ar[8] here 8 is an index
In Associative array a key is used instead of index for getting array element. Key must be unique otherwise you can’t get all elements uniquely following code implement this logic
<?php
$ar=array("roll"=>"35","name"=>"Amit","fname"=>"Mr. Sumit","dob"=>"12-Aug-16");
echo "Roll : $ar[roll]<br>Name : $ar[name]<br> Father Name : $ar[fname]<br>Date of Birth : $ar[dob]";
echo "Roll : $ar[roll]<br>Name : $ar[name]<br> Father Name : $ar[fname]<br>Date of Birth : $ar[dob]";
?>
Output :
No comments:
Post a Comment