An array called $dinner with numeric keys : Array Element « Data Structure « PHP
- PHP
- Data Structure
- Array Element
An array called $dinner with numeric keys
<?
$dinner[0] = 'S';
$dinner[1] = 'L';
$dinner[2] = 'B';
?>
Related examples in the same category