3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr =[['c' => 3], ['a' => 1, 'b' => 2, 'c' => 3], ['c' => 3]]; $new = $arr[0]; foreach($arr as $sub){ $new = array_intersect_key($new, $sub); } foreach($arr as &$sub){ $sub =array_intersect_key($sub, $new); } Var_dump($arr);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> array(1) { ["c"]=> int(3) } [1]=> array(1) { ["c"]=> int(3) } [2]=> &array(1) { ["c"]=> int(3) } }

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.28 ms | 405 KiB | 5 Q