3v4l.org

run code in 300+ PHP versions simultaneously
<?php $d = array ( array ( 'a1' => true, 'b1' => 'abc' , 'c1' => 'def' ), array ( 'a2' => true, 'b2' => 'fgh', 'c2' => 'ijk' , 'd2' => 'lmn' , 'e2' => 'opq' )); function flatten(array $array) { $result = array(); if (is_array($array)) { foreach ($array as $k => $v) { if (is_array($v)) { $result = array_merge($result, flatten($v)); } else { $result[$k] = $v; } } } return $result; } $dd = flatten($d); echo "<pre>"; print_r($dd); echo "</pre>"; ?>
Output for git.master_jit, git.master, rfc.property-hooks
<pre>Array ( [a1] => 1 [b1] => abc [c1] => def [a2] => 1 [b2] => fgh [c2] => ijk [d2] => lmn [e2] => opq ) </pre>

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