Creates an array that assigns keys 1 through 7 to the days of the week. : Associate Array « Data Structure « PHP
- PHP
- Data Structure
- Associate Array
Creates an array that assigns keys 1 through 7 to the days of the week.
<?
$days = array(1=>"Sunday", "Monday", "Tuesday","Wednesday", "Thursday", "Friday", "Saturday");
?>
Related examples in the same category