3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array( 0 => array( '1' => '123', '2' => '120', '3' => '30', '4' => '150' ), 1 => array( '1' => '123', '2' => '122', '3' => '30', '4' => '158' ), 2 => array( '1' => '123', '2' => '129', '3' => '300', '4' => '150' ) ); $a = array_merge(...$array); print_r($a); echo max($a);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 123 [1] => 120 [2] => 30 [3] => 150 [4] => 123 [5] => 122 [6] => 30 [7] => 158 [8] => 123 [9] => 129 [10] => 300 [11] => 150 ) 300

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