ctype digit php5.5,PHP ctype_digit 用法 手册 | 示例代码

info at directwebsolutions dot nl

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.

* Check input for existing only of digits (numbers)

* @author Tim Boormans

* @param $digit

* @return bool

*/functionis_digit($digit) {

if(is_int($digit)) {

returntrue;

} elseif(is_string($digit)) {

returnctype_digit($digit);

} else {// booleans, floats and othersreturnfalse;

}

}?>

error17191 at gmail dot com

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

a_p_leeming at hotmail dot com

Also note that

rlerne at gmail dot com

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.

$val=42;//Answer to life$x=ctype_digit($val);?>

Will return false, even though, when typecasted to string, it would be true.

$val='42';$x=ctype_digit($val);?>

Returns True.

Could do this too:

$val=42;$x=ctype_digit((string)$val);?>

Which will also return true, as it should.

strrev xc tod noxeh ta ellij

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)

Peter de Pijd

Note that an empty string is also false:

ctype_digit("") // false

smicheal2 at gmail dot com

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.

mdsky at web dot de

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

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

If you need to check for integers instead of just digits you can supply your own function such as this:

{

returnpreg_match('/^-?[0-9]+$/', (string)$text) ?true:false;

}?>

raul dot 3k at gmail dot com

The ctype_digit can be used in a simple form to validate a field:

$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

ctype_digit don't support negative value in string:

var_dump(ctype_digit('-10') );//return bool(false)?>

Improved (and simplified) Tim Boormans code:

* Check input for existing only of digits (numbers)

* @author Guilherme Nascimento

* @param $digit

* @return bool

*/functionis_digit($digit)

{

returnpreg_match('#^-?d+$#',$digit) &&is_int((int)$digit);

}

zorrosNOSPAMwordsman at NOSPAM dot gmail dot com

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:

I haven't benchmarked it, but I'm guessing it's significantly faster then regular expressions.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值