3v4l.org

run code in 300+ PHP versions simultaneously
<?php $A=array ("AAA"=>"45", "FFF"=>"108", "GGG"=>"15"); $B=array ("FFF"=>"108", "GGG"=>"15", "AAA"=>"45"); $C=array ("FFF"=>"108", "GGG"=>"15", "AAA"=>"450"); echo "Similar: "; var_dump($A == $B); echo "\n\n"; echo "Same: "; var_dump($A === $B); echo "\n\n"; echo "Control (should be false on both):\n"; var_dump($B == $C); var_dump($B === $C);
Output for git.master, git.master_jit, rfc.property-hooks
Similar: bool(true) Same: bool(false) Control (should be false on both): bool(false) bool(false)

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