Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Convert a String to a Number in PHP

phpCopy<?php  
$variable = "45";
settype($variable, "integer");
echo "The variable has converted to a number and its value is $variable.";  
?>
Source by www.delftstack.com #
 
PREVIOUS NEXT
Tagged: #Convert #String #Number #PHP
ADD COMMENT
Topic
Name
3+3 =