"Array () PHP Function"
Definition: Returns an array of the parameters. The parameters can be given an index with the => operator.
Examples: phpma.com
<?php
$months = array(1 => 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
print_r($months);
?> phpma.com


