Answers for "php incert decimal always 00"

PHP
13

php 3 digit decimal

return number_format((float)$number, 2, '.', '');
Posted by: Guest on October-23-2020
0

1.0E-6 to decimal in php

<?php
//Use the exemple below to convert Scientific Notation to float/decimal on PHP:

  echo sprintf('%f', floatval('-1.0E-5'));//default 6 decimal places
  echo sprintf('%.8f', floatval('-1.0E-5'));//force 8 decimal places
  echo rtrim(sprintf('%f',floatval(-1.0E-5)),'0');//remove trailing zeros

?>
Posted by: Guest on August-09-2021

Code answers related to "php incert decimal always 00"

Browse Popular Code Answers by Language