3v4l.org

run code in 500+ PHP versions simultaneously
<?php var_dump( 1 & 3); // 1 var_dump( "b" & "a"); // ` var_dump( chr(ord("b") & ord("a"))); var_dump( "1" & "a"); // ! // type error //var_dump( 1 & "a"); var_dump( "1" & "4"); // 0 var_dump( chr(ord("1") & ord("4"))); // 0
Output for git.master, git.master_jit
int(1) string(1) "`" string(1) "`" string(1) "!" string(1) "0" string(1) "0"

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:
75.7 ms | 852 KiB | 4 Q