Answers for "how to check if a variable is an integer in php"

PHP
2

php is variable a number

if(is_numeric($what_am_i)){
	//true
}
Posted by: Guest on September-24-2020
1

php check if input is int

$a = 5; //returns true
$a = "5"; //returns false
$a = 5.3; //returns false
is_int($a);
Posted by: Guest on May-25-2020
0

php check if string is integer

<?php
$strings = array('1820.20', '10002', 'wsl!12');
foreach ($strings as $testcase) {
    if (ctype_digit($testcase)) {
        echo "The string $testcase consists of all digits.\n";
    } else {
        echo "The string $testcase does not consist of all digits.\n";
    }
}
?>
Posted by: Guest on February-26-2021

Code answers related to "how to check if a variable is an integer in php"

Browse Popular Code Answers by Language