Answers for "convert to numeric php"

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
8

php to int

$num = "3.14";
$int = (int)$num;
Posted by: Guest on April-13-2020

Code answers related to "convert to numeric php"

Browse Popular Code Answers by Language