Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Convert a String to a Number in PHP

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

$variable = "8.1";
$float = (float)$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+1 =