Home  >  Article  >  Backend Development  >  Summary of function usage for judging PHP variables

Summary of function usage for judging PHP variables

伊谢尔伦
伊谢尔伦Original
2017-06-29 13:39:584510browse

Unlike other languages, PHP is not a strictly typed language. Basically, this means that developers do not have to explicitly set the type of a variable (number, string, boolean) before using it. Instead, the PHP interpreter automatically detects the type of the variable based on the information stored in the variable. Although this feature makes programming with PHP very easy, it also has an important flaw: when you need to test the type of a variable Languages ​​that handle types more loosely can be a bit confusing. Fortunately, the developers of PHP noticed this and included a toolkit of functions specifically for testing variables and finding out which specific character class category they belong to - also That is, whether they contain strings, integers, objects, or Boolean values.

The more useful functions in this category are listed below, with descriptions and application examples provided. empty($var)
This function is used to check whether the variable is empty (no value or zero value). Use this function to check user input, for example, form variables. Ensure they contain valid data.



gettype($var)
This function returns the type of variable. For example, "String", "Integer", "Boolean", "Float", etc. This function is generally used to verify that the variable is of the type you expect before inserting it into a strictly typed database field.


is_bool($var)
This function tests a variable to see if it contains a Boolean value (true/false). Use this function to check if a variable is a Boolean variable.



is_string($var)
This function tests whether a variable is a string variable. Use this function to check whether a variable contains string data.



is_numeric($var)
This function tests a variable to see if it contains a number or a string of numbers (a string includes a symbol, number and decimal point). Use this function to verify that a variable contains a number before using it in calculations.


is_array($var)
This function tests a variable to see if it is a PHP-related or numerically indexed array. Use this function to check whether a variable is an array before processing it in a loop.



is_null($var)
This function tests a variable to see if it is NULL. Use this function to check whether a variable is NULL when evaluating data returned by a SQL query.



is_
object

($var)

This function tests a variable to see if it is a PHP object. This function is generally used to test whether a variable is a PHP object before calling a method or accessing
properties.

isset($var)
This function tests a variable to see if it has been defined. This function is typically used to test whether a variable is defined when evaluating the results of a form submission.



print_r($var)
This function prints the contents of a variable. Use this function to "spy" on a variable, especially when

debugging

a script.


The above is the detailed content of Summary of function usage for judging PHP variables. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn