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