<?php $stack = array("orange", "banana", "apple", "raspberry"); $fruit = function () use (&$stack) { return array_shift($stack); }; var_dump($fruit()); var_dump($fruit()); var_dump($fruit()); var_dump($fruit());
You have javascript disabled. You will not be able to edit any code.