Skip to content

Instantly share code, notes, and snippets.

@Glutexo
Glutexo / format-exponential.php
Created September 2, 2016 14:15
Converts an exponential (scientific) number notation to a decimal one using neither GMP nor BCMath module.
<?php
/**
* Converts an exponential (scientific) number notation to a decimal one.
* Uses neither GMP nor BCMath modules.
*
* @param float|int|string $value
* @return string
*/
function formatExponential($value) {
// Both upper-case “E” and lower-case “e” would work.