3v4l.org

run code in 300+ PHP versions simultaneously
<?php function myceil(int|float $number, int $precision, int $decimals) { return number_format(ceil($number*(10**$precision))/(10**$precision), 2); } echo myceil(46.38,1, 2).PHP_EOL; echo myceil(46.40,1, 2).PHP_EOL; echo myceil(46.41,1, 2).PHP_EOL;
Output for git.master_jit, git.master, rfc.property-hooks
46.40 46.40 46.50

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:
68.1 ms | 405 KiB | 5 Q