Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Convert a String to a Number in PHP

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