Answers for "php convert value to numeric"

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
3

convert to int php

$myintvariable = intval($myvariable);
Posted by: Guest on February-16-2020

Code answers related to "php convert value to numeric"

Browse Popular Code Answers by Language