3v4l.org

run code in 300+ PHP versions simultaneously
<?php $char = 'a'; $ord = 0; $bits = ["\x01", "\x02", "\x04", "\x08", "\x10", "\x20", "\x40", "\x80"]; for ($i = 0; $i < 8; $i++) { if (($char & $bits[$i]) === $bits[$i]) { $ord += 2 ** $i; } } var_dump($ord);
Output for rfc.property-hooks, git.master, git.master_jit
int(97)

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:
43.17 ms | 1609 KiB | 4 Q