Answers for "php check for integer"

PHP
3

php check if string or number

<?php if (is_numeric("cake")) { echo "Yes"; } else { echo "No"; } ?>
Posted by: Guest on February-08-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 "php check for integer"

Browse Popular Code Answers by Language