Source Code:
(back to article)
<?php $fruits = ['apple' => 'red', 'banana' => 'yellow', 'orange' => 'orange']; echo $fruits['apple'] . PHP_EOL; // outputs 'red' echo $fruits['orange']; // outputs 'orange'
Result:
Report an issue