Answers for "php double to float"

PHP
6

php float 2 decimais

$foo = "105";
echo number_format((float)$foo, 2, '.', '');
Posted by: Guest on June-18-2020
0

Convert String to Float in PHP

phpCopy<?php
$mystring = "0.5674";
echo("This float number is of string data type ");
echo($mystring);
echo("\n");
$myfloat = (float) $mystring;
echo("Now, this float number is of float data type ");
echo($myfloat);
?>
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language