3v4l.org

run code in 300+ PHP versions simultaneously
<?php $vars = array(11, '11e1', '11f1', '11e0', '11f0', '11e2', '11f2'); $size = count($vars); for($ii = 0; $ii < $size - 1; $ii++) { for($jj = $ii + 1; $jj < $size; $jj++) { if ($vars[$ii] == $vars[$jj]) { echo "$vars[$ii] == $vars[$jj]\n"; } } } var_dump($vars);
Output for git.master, git.master_jit, rfc.property-hooks
11 == 11e0 array(7) { [0]=> int(11) [1]=> string(4) "11e1" [2]=> string(4) "11f1" [3]=> string(4) "11e0" [4]=> string(4) "11f0" [5]=> string(4) "11e2" [6]=> string(4) "11f2" }

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