3v4l.org

run code in 300+ PHP versions simultaneously
<?php function xpnd($scientific, $precision){ # expand from scientific notation if(is_int($scientific)){ #don't convert integers return $scientific; } return sprintf("%.".$precision."F", $scientific); } echo "1 - ".bcdiv(0.000967, 2, 10).PHP_EOL; echo "2 - ".(40075036/86164.098903691);

preferences:
32.43 ms | 402 KiB | 5 Q