Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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.
";
    } else {
        echo "The string $testcase does not consist of all digits.
";
    }
}
?>
Source by www.thoughtco.com #
 
PREVIOUS NEXT
Tagged: #php #check #string #integer
ADD COMMENT
Topic
Name
9+7 =