3v4l.org

run code in 300+ PHP versions simultaneously
<?php $myArray = array( "a", array( "a", "b", array( "a", "b", "c", new ArrayObject( "a", "b", "c", "d", array("the end") ) ) ) ); $recursive_array_iterator = new RecursiveArrayIterator(new ArrayObject($myArray)); iterator_apply($recursive_array_iterator, 'traverseRecursiveArray', array($recursive_array_iterator)); var_dump($recursive_array_iterator); function traverseRecursiveArray($iterator) { $i = 0; while ($iterator->valid()) { if ($iterator->hasChildren()) { traverseRecursiveArray($iterator->getChildren()); } else { $iterator->offsetSet($iterator->key(), manipulate($iterator->current())); echo $iterator->key() . ' => ' . $iterator->current() . PHP_EOL; } $iterator->next(); } } function manipulate($string) { $string .= " appended"; return $string; } var_dump($myArray);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ArgumentCountError: ArrayObject::__construct() expects at most 3 arguments, 5 given in /in/8FMcf:12 Stack trace: #0 /in/8FMcf(12): ArrayObject->__construct('a', 'b', 'c', 'd', Array) #1 {main} thrown in /in/8FMcf on line 12
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
45.82 ms | 401 KiB | 8 Q