<?php // Create an array with 0 value $array = array(0); // Iterate over the array, var_dump each value // At the same time, set the next value to "lolcats" foreach ($array as $key => &$val) { var_dump($val); $array[uniqid()] = "lolcats"; } // Finally var_dump the $array var_dump($array);
You have javascript disabled. You will not be able to edit any code.