Answers for "check if string is only number php"

PHP
0

how to check if PHP variable contains non-numbers?

if ( is_numeric($_POST['foo']) ) {
    $foo = $_POST['foo'];
} else {
    // Error
}
Posted by: Guest on April-30-2020

Code answers related to "check if string is only number php"

Browse Popular Code Answers by Language