3v4l.org

run code in 300+ PHP versions simultaneously
<?php $headers = array( 'one', 'two', 'three', ); $data = array( 'three' => 'someva3', 'one' => 'someval1', 'two' => 'someval2' ); print_r(array_flip($headers)); $correctOrder = array_merge(array_flip($headers), $data); print_r($correctOrder); $expected = array_values($correctOrder); print_r($expected);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [one] => 0 [two] => 1 [three] => 2 ) Array ( [one] => someval1 [two] => someval2 [three] => someva3 ) Array ( [0] => someval1 [1] => someval2 [2] => someva3 )

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