3v4l.org

run code in 300+ PHP versions simultaneously
<?php var_dump(2114.20); // 211419.99999999997 since PHP 8.0 upto latest, 211420 in pre-8.0 var_dump(2114.20 * 100); // 211410 for all versions var_dump(2114.10 * 100); // 2120 for all versions var_dump(21.20 * 100); // 21420 for all versions var_dump(214.20 * 100); // 1420 for all versions var_dump(14.20 * 100); var_dump(1.15 * 100);
Output for git.master, git.master_jit, rfc.property-hooks
float(2114.2) float(211419.99999999997) float(211410) float(2120) float(21420) float(1420) float(114.99999999999999)

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