3v4l.org

run code in 300+ PHP versions simultaneously
<?php $num = base_convert("fffffffe",16,2); var_dump($num); $arr = str_split($num); for ($i=0,$max = count($arr)-1; $i <=$max; $i++) { if ($arr[$i] == '1' ) { $arr[$i] = '0'; } else if ($arr[$i] == '0') { $arr[$i] = '1'; } } $str = join('',$arr); var_dump($str); $converted = base_convert($str,2,16); $hex = '0x'.$converted; $a = gmp_add($hex,"1"); echo gmp_strval($a),'<BR>'; $a = -(gmp_intval($a)); var_dump($a);
Output for git.master, git.master_jit, rfc.property-hooks
string(32) "11111111111111111111111111111110" string(32) "00000000000000000000000000000001" 2<BR>int(-2)

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