3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gdr_encode($val) { return base64_encode($val); } function gdr_decode($val) { return base64_decode($val); } $vals = array(0, 1, 99, 100, 255, 256, 999, 1000, 9999, 10000, 65535, 65536, 99999, 100000, 999999, 1000000, 4294967295, 4294967296); foreach ($vals as $val) { $enc = json_encode(gdr_encode($val)); $dec = json_encode(gdr_decode($enc)); $val = json_encode($val); if (strlen($enc) > strlen($val)) { echo "$enc $val WORSE\n"; } else if (strlen($enc) == strlen($val)) { echo "$enc $val EQUAL\n"; } else { echo "$enc $val\n"; } }
Output for git.master, git.master_jit, rfc.property-hooks
"MA==" 0 WORSE "MQ==" 1 WORSE "OTk=" 99 WORSE "MTAw" 100 WORSE "MjU1" 255 WORSE "MjU2" 256 WORSE "OTk5" 999 WORSE "MTAwMA==" 1000 WORSE "OTk5OQ==" 9999 WORSE "MTAwMDA=" 10000 WORSE "NjU1MzU=" 65535 WORSE "NjU1MzY=" 65536 WORSE "OTk5OTk=" 99999 WORSE "MTAwMDAw" 100000 WORSE "OTk5OTk5" 999999 WORSE "MTAwMDAwMA==" 1000000 WORSE "NDI5NDk2NzI5NQ==" 4294967295 WORSE "NDI5NDk2NzI5Ng==" 4294967296 WORSE

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:
38.29 ms | 402 KiB | 8 Q