check if variable contains number php code example
Example 1: php check if string or number
<?php if (is_numeric(887)) { echo "Yes"; } else { echo "No"; } ?>
Example 2: check if includes numbers php
if (preg_match('~[0-9]+~', $string)) {
echo 'string with numbers';
}
Example 3: php check if string contains number
if (preg_match('/[A-Za-z]/', $myString) && preg_match('/[0-9]/', $myString))
{
echo 'Contains at least one letter and one number';
}