<?php function &getBar() { static $bar = null; if ($bar === null) { $bar[] = 'init'; } return $bar; } $array = &getBar(); $arary[] = 123; // var_dump(getBar());
You have javascript disabled. You will not be able to edit any code.