Examples of function usage for judging numbers, characters, and objects in php, and php instances. Php number, character, and object judgment function usage example. php instance this article describes the php number, character and object judgment function usage. Share it with you for your reference. Examples of php function usage for judging numbers, characters, and objects
This document describes how to use the number, character, and object judgment function in php. Share it with you for your reference. The specific analysis is as follows:
In php, numbers, characters, objects, arrays, and so on can be viewed as is_bool (), is_int (), is_integer (), is_float (), is_real (), and is_object () and is_array (). How much do you know.
1. double-precision number judgment: is_double
Is_double -- is_float () alias
Description: This function is an alias for is_float (). The code is as follows:
The code is as follows:
$ Temperature = 15.23;
If (is_double ($ Temperature ))
{
Print ("Temperature is a double "."
");
}
2. integer judgment: alias of is_integer -- is_int () and is_long ()
Description: This function is an alias for is_int (). The code is as follows:
The code is as follows:
$ PageCount = 2234;
If (is_integer ($ PageCount ))
{
Print ("$ PageCount is an integer "."
");
}
3. object judgment: is_object -- checks whether the variable is an object.
Description: bool is_object (mixed var)
If var is an object, TRUE is returned; otherwise, FALSE is returned. the code is as follows:
The code is as follows:
Class widget
{
Var $ name;
Var $ length;
}
$ Thing = new widget;
If (is_object ($ thing ))
{
Print ("thing is an object "."
");
}
4. character judgment: is_string -- check whether the variable is a string
Description: bool is_string (mixed var)
If var is a string, TRUE is returned; otherwise, FALSE is returned. the code is as follows:
The code is as follows:
$ Greeting = "www.jb51.net ";
If (is_string ($ Greeting ))
{
Print ("Greeting is a string "."
");
}
5. is_numeric -- checks whether the variable is a numeric or numeric string.
Description: bool is_numeric (mixed var)
If var is a numeric or numeric string, TRUE is returned; otherwise, FALSE is returned. the code is as follows:
The code is as follows:
$ Int = 1;
If (is_numeric ($ int ))
{
Print ("This is a real number, man "."
");
}
Here is just a simple description of php Objects, numbers, character judgment functions, the difficulty is relatively simple. I hope this article will help you with PHP programming.
Examples in this article describes how to use the number, character, and object judgment function in php. Share it with you for your reference. Specific analysis...