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