1436
PHP Проверка на содержание цифр в строке
function check_for_number($str) {
$i = strlen($str);
while ($i--) {
if (is_numeric($str[$i])) return true;
}
return false;
}