Answers for "parse int float php"

PHP
1

php float to int

$int = intval($float);
Posted by: Guest on October-08-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