(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP
ctype_digit — Проверяет наличие цифровых символов в строке
Описание
ctype_digit(mixed $text
): bool
Список параметров
-
text
-
Проверяемая строка.
Замечание:
Если передано целое число (int) в диапазоне между -128 и 255 включительно,
то оно будет обработано как ASCII-код одного символа (к отрицательным
значениям будет прибавлено 256 для возможности представления символов из
расширенного диапазона ASCII). Любое другое целое число будет обработано
как строка, содержащая десятичные цифры этого числа.Внимание
Начиная с PHP 8.1.0, передача нестроковых аргументов устарела.
В будущем аргумент будет интерпретироваться как строка вместо кода ASCII.
В зависимости от предполагаемого поведения аргумент должен быть приведён к строке (string)
или должен быть сделан явный вызов функции chr().
Возвращаемые значения
Возвращает true
, если каждый символ строки text
является
десятичной цифрой, либо false
в противном случае.
При вызове с пустой строкой результатом всегда будет false
.
Примеры
Пример #1 Пример использования ctype_digit()
<?php
$strings = array('1820.20', '10002', 'wsl!12');
foreach ($strings as $testcase) {
if (ctype_digit($testcase)) {
echo "Строка $testcase состоит только из цифр.n";
} else {
echo "Строка $testcase не состоит только из цифр.n";
}
}
?>
Результат выполнения данного примера:
Строка 1820.20 не состоит только из цифр. Строка 10002 состоит только из цифр. Строка wsl!12 не состоит только из цифр.
Пример #2 Пример использования ctype_digit() со сравнением строк и целых чисел
<?php
$numeric_string
= '42';
$integer = 42;ctype_digit($numeric_string); // true
ctype_digit($integer); // false (ASCII 42 - это символ *)is_numeric($numeric_string); // true
is_numeric($integer); // true
?>
Смотрите также
- ctype_alnum() — Проверяет наличие буквенно-цифровых символов
- ctype_xdigit() — Проверяет наличие шестнадцатеричных цифр
- is_numeric() — Проверяет, является ли переменная числом или строкой, содержащей число
- is_int() — Проверяет, является ли переменная целым числом
- is_string() — Проверяет, является ли переменная строкой
info at directwebsolutions dot nl ¶
11 years ago
All basic PHP functions which i tried returned unexpected results. I would just like to check whether some variable only contains numbers. For example: when i spread my script to the public i cannot require users to only use numbers as string or as integer. For those situation i wrote my own function which handles all inconveniences of other functions and which is not depending on regular expressions. Some people strongly believe that regular functions slow down your script.
The reason to write this function:
1. is_numeric() accepts values like: +0123.45e6 (but you would expect it would not)
2. is_int() does not accept HTML form fields (like: 123) because they are treated as strings (like: "123").
3. ctype_digit() excepts all numbers to be strings (like: "123") and does not validate real integers (like: 123).
4. Probably some functions would parse a boolean (like: true or false) as 0 or 1 and validate it in that manner.
My function only accepts numbers regardless whether they are in string or in integer format.
<?php
/**
* Check input for existing only of digits (numbers)
* @author Tim Boormans <info@directwebsolutions.nl>
* @param $digit
* @return bool
*/
function is_digit($digit) {
if(is_int($digit)) {
return true;
} elseif(is_string($digit)) {
return ctype_digit($digit);
} else {
// booleans, floats and others
return false;
}
}
?>
Peter de Pijd ¶
13 years ago
Note that an empty string is also false:
ctype_digit("") // false
smicheal2 at gmail dot com ¶
7 years ago
Please note that ctype_digit() will say true for strings such as '00001', which are not technically valid representations of integers, while saying false to strings such as '-1', which are. It's basically a faster version of the regex /^d+$/. As the name says, it answers the question "does this string contain only digits" literally. It does not answer "is this a valid representation of an integer". If that's what you want, use is_int(filter_var($val, FILTER_VALIDATE_INT)) instead.
error17191 at gmail dot com ¶
7 years ago
I just wanted to clarify a flaw in the function is_digit() suggested by "info at directwebsolutions dot nl " ..
It returns true in case of negative integers and false in case of strings that contain negative integers .
example:
is_digit(-10); // returns ture
is_digit('-10'); // returns false
rlerne at gmail dot com ¶
10 years ago
Interesting to note that you must pass a STRING to this function, other values won't be typecasted (I figured it would even though above explicitly says string $text).
I.E.
<?PHP
$val = 42; //Answer to life
$x = ctype_digit($val);
?>
Will return false, even though, when typecasted to string, it would be true.
<?PHP
$val = '42';
$x = ctype_digit($val);
?>
Returns True.
Could do this too:
<?PHP
$val = 42;
$x = ctype_digit((string) $val);
?>
Which will also return true, as it should.
strrev xc tod noxeh ta ellij ¶
13 years ago
ctype_digit() will treat all passed integers below 256 as character-codes. It returns true for 48 through 57 (ASCII '0'-'9') and false for the rest.
ctype_digit(5) -> false
ctype_digit(48) -> true
ctype_digit(255) -> false
ctype_digit(256) -> true
(Note: the PHP type must be an int; if you pass strings it works as expected)
a_p_leeming at hotmail dot com ¶
14 years ago
Also note that
<?php ctype_digit("-1"); //false ?>
mdsky at web dot de ¶
13 years ago
is_numeric gives true by f. ex. 1e3 or 0xf5 too. So it's not the same as ctype_digit, which just gives true when only values from 0 to 9 are entered.
John Saman ¶
13 years ago
Using is_numeric function is quite faster than ctype_digit.
is_numeric took 0.237 Seconds for one million runs. while ctype_digit took 0.470 Seconds.
Skippy ¶
11 years ago
If you need to check for integers instead of just digits you can supply your own function such as this:
<?php
function ctype_int($text)
{
return preg_match('/^-?[0-9]+$/', (string)$text) ? true : false;
}
?>
zorrosNOSPAMwordsman at NOSPAM dot gmail dot com ¶
7 years ago
If you want to verify whether or not a variable contains only digits, you can type cast it to a string and back to int and see if the result is identical. Like so:
<?php// (bool) TRUE if only digits, FALSE otherwise
$isOnlyDigits = (string) (int) $input === (string) $input;?>
I haven't benchmarked it, but I'm guessing it's significantly faster then regular expressions.
raul dot 3k at gmail dot com ¶
14 years ago
The ctype_digit can be used in a simple form to validate a field:
<?php
$field = $_POST["field"];
if(!ctype_digit($field)){
echo "It's not a digit";
}
?>
Note:
Digits is 0-9
brcontainer at yahoo dot com dot br ¶
4 years ago
ctype_digit don't support negative value in string:
<?php
var_dump( ctype_digit('-10') ); //return bool(false)
?>
Improved (and simplified) Tim Boormans code:
<?php
/**
* Check input for existing only of digits (numbers)
* @author Guilherme Nascimento <brcontainer@yahoo.com.br>
* @param $digit
* @return bool
*/
function is_digit($digit)
{
return preg_match('#^-?d+$#', $digit) && is_int((int) $digit);
}
divinity76 at gmail dot com ¶
2 years ago
an alternative if you want to check if it's a valid integer:
<?php
if(false!==filter_var($v, FILTER_VALIDATE_INT)){
// it's a valid int!
$v=(int)$v;
}else{
// it's not a valid int
}
?>
or if you want to check that it's a positive integer (>= 0):
<?php
if(false!==filter_var($v, FILTER_VALIDATE_INT, ["options"=>["min_range"=>0]])){
// it's a valid positive integer!
$v = (int)$v;
}else{
// it's not a valid positive integer
}?>
I’ve been using this since long time. While all the other answers have drawbacks or special cases, if you want to detect any possible int valued thing, including 1.0 «1.0» 1e3 «007» then you better let is_numeric do its job to detect any possible PHP object that represents a number, and only then check if that number is really an int, converting it to int and back to float, and testing if it changed value.:
function isIntValued($var) {
if(is_numeric($var)) { // At least it's number, can be converted to float
$var=(float)$var; // Now it is a float
return ((float)(int)$var)===$var;
}
return FALSE;
}
or in short
function isIntValued($var) {
return (!is_numeric($var)?FALSE:((float)(int)(float)$var)===(float)$var);
}
Or
function isIntValued($var) {
return (is_numeric($var) && ((float)(int)(float)$var)===(float)$var);
}
Note that while PHP’s is_int()
checks if the type of variable is an integer, on the contrary the other standard PHP function is_numeric()
determines very accurately if the contents of the variable (i.e. string chars) can represent a number.
If, instead, you want «1.0» and «2.00» not to be considered integers but floats (even if they have an integer value), then the other answer ( @Darragh Enright ) using is_numeric, adding zero and testing for int is probably the most correct solution:
is_numeric($s) && is_int($s+0)
Possible Duplicate:
Extract numbers from a string
How can I find a number in a string with PHP?
for example :
<?
$a="Cl4";
?>
i have a string like this ‘Cl4’ . i wanna if there is a number like ‘4’ in the string give me this number but if there is not a number in the string give me 1 .
asked Nov 24, 2012 at 4:10
3
<?php
function get_number($input) {
$input = preg_replace('/[^0-9]/', '', $input);
return $input == '' ? '1' : $input;
}
echo get_number('Cl4');
?>
answered Nov 24, 2012 at 4:17
Adam TaylorAdam Taylor
4,6711 gold badge37 silver badges38 bronze badges
2
$str = 'CI4';
preg_match("/(d)/",$str,$matches);
echo isset($matches[0]) ? $matches[0] : 1;
$str = 'CIA';
preg_match("/(d)/",$str,$matches);
echo isset($matches[0]) ? $matches[0] : 1;
answered Nov 24, 2012 at 4:15
Samuel CookSamuel Cook
16.5k7 gold badges50 silver badges62 bronze badges
$input = "str3ng";
$number = (preg_match("/(d)/", $input, $matches) ? $matches[0]) : 1; // 3
$input = "str1ng2";
$number = (preg_match_all("/(d)/", $input, $matches) ? implode($matches) : 1; // 12
answered Nov 24, 2012 at 4:27
Maks3wMaks3w
5,9146 gold badges37 silver badges42 bronze badges
Here is a simple function which will extract number from your your string and if number not found it will return 1
<?php
function parse_number($string) {
preg_match("/[0-9]/",$string,$matches);
return isset($matches[0]) ? $matches[0] : 1;
}
$str = 'CI4';
echo parse_number($str);//Output : 4
$str = 'ABCD';
echo parse_number($str); //Output : 1
?>
answered Nov 24, 2012 at 4:43
Pankaj KhairnarPankaj Khairnar
3,0083 gold badges24 silver badges33 bronze badges
Ситуация такая:$string = "12,14,152,66,15";
есть некая переменая $string, в ней есть набор таких чисел, нужно найти число 15 но. Использовал strpos, но первым найденым элементом будет 152, а это мне не нужно.
Также непонятно, что она возвращает, мне нужно только false или true, а не понятно что.
-
Вопрос заданболее трёх лет назад
-
8920 просмотров
@maNULL и не говнокод вовсе.
но так лучше:
$string = "12,14,152,66,15";
$res = explode(',', $string);
$pos = array_search(15, $res);
немного говнокода на скорую руку
$string = "12,14,152,66,15";
$res = explode(',', $string);
foreach ($res as $v) {
if (intval($v) === 15) echo "В строке присутствует число 15";
else continue;
}
Пригласить эксперта
Почему просто не использовать strpos() на «,15,» ?
Внесу свою лепту =)preg_match("/15D|15$/", $string)
т.е. тут ищет число 15+любой символ кроме десятичного числа например «15asdfd» и если 15 в конце строки.
-
Показать ещё
Загружается…
27 мая 2023, в 23:03
10000 руб./за проект
27 мая 2023, в 22:55
1000 руб./за проект
27 мая 2023, в 22:42
500000 руб./за проект
Минуточку внимания
За последние 24 часа нас посетили 9960 программистов и 998 роботов. Сейчас ищут 726 программистов …
ctype_digit
(PHP 4 >= 4.0.4, PHP 5, PHP 7)
ctype_digit — Проверяет на наличие цифровых символов в строке
Описание
bool ctype_digit
( string $text
)
Список параметров
-
text
-
Проверяемая строка.
Возвращаемые значения
Возвращает TRUE
если каждый символ строки text
является
десятичной цифрой, либо FALSE
в противном случае.
Список изменений
Версия | Описание |
---|---|
5.1.0 |
До версии PHP 5.1.0 эта функция возвращала TRUE ,если в качестве text передавалась пустая строка.
|
Примеры
Пример #1 Пример использования ctype_digit()
<?php
$strings = array('1820.20', '10002', 'wsl!12');
foreach ($strings as $testcase) {
if (ctype_digit($testcase)) {
echo "Строка $testcase состоит только из цифр.n";
} else {
echo "Строка $testcase не состоит только из цифр.n";
}
}
?>
Результат выполнения данного примера:
Строка 1820.20 не состоит только из цифр. Строка 10002 состоит только из цифр. Строка wsl!12 не состоит только из цифр.
Пример #2 Пример использования ctype_digit() со сравнением строк и целых чисел
<?php
$numeric_string
= '42';
$integer = 42;ctype_digit($numeric_string); // true
ctype_digit($integer); // false (ASCII 42 это символ * )is_numeric($numeric_string); // true
is_numeric($integer); // true
?>
Примечания
Замечание:
Для извлечения пользы из работы этой функции ей необходимо передавать
строку (string), поэтому, если ей, к примеру, будет
передан integer, то она может не возвратить ожидаемый
результат. Однако, необходимо учитывать, что HTML-формы передают
числовые строки, а не целые числа. Подробнее читайте в разделе
«Типы» данного руководства.
Смотрите также
- ctype_alnum() — Проверяет на наличие буквенно-цифровых символов
- ctype_xdigit() — Проверяет наличие шестнадцатеричных цифр
- is_numeric() — Проверяет, является ли переменная числом или строкой, содержащей число
- is_int() — Проверяет, является ли переменная переменной целочисленного типа
- is_string() — Проверяет, является ли переменная строкой
Вернуться к: Ctype