3v4l.org

run code in 300+ PHP versions simultaneously
<?php $first_array = array(1,3,4,5,6); $second_array = array(5,2,1,7,9); $return = array(); foreach($first_array as $key => $value){ if($first_array[$key] > $second_array[$key]){ $return[] = $first_array[$key]; }else{ $return[] = $second_array[$key]; } } print_r($return);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 5 [1] => 3 [2] => 4 [3] => 7 [4] => 9 )

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:
35.18 ms | 405 KiB | 5 Q