Answers for "php change string in numbers"

PHP
2

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.";  
?>
Posted by: Guest on April-23-2021
0

Convert a String to a Number in PHP

phpCopyintval( $StringName );
Posted by: Guest on April-23-2021

Code answers related to "php change string in numbers"

Browse Popular Code Answers by Language