php check if contains number code example
Example 1: php check if string or number
<?php if (is_numeric("cake")) { echo "Yes"; } else { echo "No"; } ?>
Example 2: check if includes numbers php
if (preg_match('~[0-9]+~', $string)) {
echo 'string with numbers';
}