Answers for "convert string to number decimal php"

PHP
14

cast string to int php

$num = "3.14"; 
$int = (int)$num;//string to int
$float = (float)$num;//string to float
Posted by: Guest on March-23-2020
3

php float value

floatval ($var)
Posted by: Guest on June-19-2019

Code answers related to "convert string to number decimal php"

Browse Popular Code Answers by Language