turn string into integer php code example
Example 1: php string to int
intval($string);
Example 2: cast string to int php
$num = "3.14";
$int = (int)$num;
$float = (float)$num;
Example 3: string to int php
$str = "10";
$num = (int)$str;
Example 4: Convert a String to a Number in PHP
phpCopy<?php
$variable = "2020Time";
$integer = intval($variable);
echo "The variable $variable has converted to a number and its value is $integer.";
echo "\n";
$variable = "Time2020";
$integer = intval($variable);
echo "The variable $variable has converted to a number and its value is $integer.";
echo "\n";
$variable = "25.3Time";
$float = floatval($variable);
echo "The variable $variable has converted to a number and its value is $float.";
echo "\n";
$variable = "Time25.3";
$float = floatval($variable);
echo "The variable $variable has converted to a number and its value is $float.";
?>