Answers for "how to check if PHP variable contains non-numbers?"

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 "how to check if PHP variable contains non-numbers?"

Browse Popular Code Answers by Language