Source Code:
(back to article)
<?php $fruits = array("apple", "banana", "cherry"); array_unshift($fruits, "orange", "lemon"); print_r($fruits); ?>
Result:
Report an issue