Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Convert a String to a Number in PHP

phpCopy<?php  
$variable = "53";
$integer = intval($variable);
echo "The variable $variable has converted to a number and its value is $integer.";  
echo "
";

$variable = "25.3";
$float = floatval($variable);
echo "The variable $variable has converted to a number and its value is $float.";  
?>
Source by www.delftstack.com #
 
PREVIOUS NEXT
Tagged: #Convert #String #Number #PHP
ADD COMMENT
Topic
Name
9+3 =