ctype_digit

(PHP 4 >= 4.0.4, PHP 5)

ctype_digitCheck for numeric character(s)

Description

bool ctype_digit ( string $text )

Checks if all of the characters in the provided string, text, are numerical.

Parameters

text

The tested string.

Return Values

Returns TRUE if every character in the string text is a decimal digit, FALSE otherwise.

Changelog

Version Description
5.1.0 Before PHP 5.1.0, this function returned TRUE when text was an empty string.

Examples

Example #1 A ctype_digit() example

<?php
$strings 
= array('1820.20''10002''wsl!12');
foreach (
$strings as $testcase) {
    if (
ctype_digit($testcase)) {
        echo 
"The string $testcase consists of all digits.\n";
    } else {
        echo 
"The string $testcase does not consist of all digits.\n";
    }
}
?>

The above example will output:

The string 1820.20 does not consist of all digits.
The string 10002 consists of all digits.
The string wsl!12 does not consist of all digits.

Example #2 A ctype_digit() example comparing strings with integers

<?php

$numeric_string 
'42';
$integer        42;

ctype_digit($numeric_string);  // true
ctype_digit($integer);         // false (ASCII 42 is the * character)

is_numeric($numeric_string);   // true
is_numeric($integer);          // true
?>

Notes

Note:

This function expects a string to be useful, so for example passing in an integer may not return the expected result. However, also note that HTML forms will result in numeric strings and not integers. See also the types section of the manual.

Note:

If an integer between -128 and 255 inclusive is provided, it is interpreted as the ASCII value of a single character (negative values have 256 added in order to allow characters in the Extended ASCII range). Any other integer is interpreted as a string containing the decimal digits of the integer.

See Also

  • ctype_alnum() - Check for alphanumeric character(s)
  • ctype_xdigit() - Check for character(s) representing a hexadecimal digit
  • is_numeric() - Finds whether a variable is a number or a numeric string
  • is_int() - Find whether the type of a variable is integer
  • is_string() - Find whether the type of a variable is string

Коментарии

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
2009-04-09 11:21:38
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
Also note that

<?php ctype_digit("-1");   //false ?>
2009-05-24 21:17:44
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
Автор:
Note that an empty string is also false:
ctype_digit("") // false
2009-07-18 06:53:22
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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)
2009-12-14 10:41:41
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
Автор:
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.
2010-02-05 07:38:17
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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.
2010-05-21 15:44:35
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
Автор:
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;
}
?>
2011-10-25 04:44:38
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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;
        }
    }
?>
2012-05-20 00:16:19
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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.
2013-04-25 21:04:18
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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
2015-10-03 04:41:49
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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.
2015-10-07 16:21:02
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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.
2016-05-11 03:34:53
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
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);
}
2018-10-07 06:00:50
http://php5.kiev.ua/manual/ru/function.ctype-digit.html
an alternative if you want to check if it's a valid integer: 

<?php
if(false!==filter_var($vFILTER_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($vFILTER_VALIDATE_INT, ["options"=>["min_range"=>0]])){
   
// it's a valid positive integer!
   
$v = (int)$v;
}else{
   
// it's not a valid positive integer
}

?>
2021-02-13 22:54:37
http://php5.kiev.ua/manual/ru/function.ctype-digit.html

    Поддержать сайт на родительском проекте КГБ