An array called $vegetables with string keys : Associate Array « Data Structure « PHP
- PHP
- Data Structure
- Associate Array
An array called $vegetables with string keys
<?
$vegetables['corn'] = 'yellow';
$vegetables['beet'] = 'red';
$vegetables['carrot'] = 'orange';
?>
Related examples in the same category