Answers for "convert array of string to float php"

PHP
2

string to float php

$floatValue = floatval("1.0");
Posted by: Guest on May-13-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

Code answers related to "convert array of string to float php"

Browse Popular Code Answers by Language