3v4l.org

run code in 300+ PHP versions simultaneously
<?php $path = ""; $finalArray = array(); $sourceArray = array( "bla.tif", "quux.tif", array("foo" => array("bar" => array("lorem" => array("ipsum.tif", "doler.tif")))), array("bar" => array("qux" => array("baz" => array("ipsum.tif", "ufo.tif")))) ); foreach($sourceArray as $key => $value) { if(!is_array($value)) { $finalArray[] = $value; } else { $finalArray[] = recur($value, $path); } } print_r($finalArray); function recur($value, $path) { foreach($value as $idx => $subValue) { if(!is_array($subValue)) { return $path . "/" . $subValue; } else { return recur($subValue, $path . "/" . $idx); } } }
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => bla.tif [1] => quux.tif [2] => /foo/bar/lorem/ipsum.tif [3] => /bar/qux/baz/ipsum.tif )

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:
37.63 ms | 401 KiB | 8 Q