Home  >  Article  >  Backend Development  >  How to determine if a specified key exists in a PHP array

How to determine if a specified key exists in a PHP array

PHPz
PHPzOriginal
2023-04-25 09:07:00412browse

In PHP, array is a very common and important data type that can store a series of data and access and operate using key-value pairs. During the development process, it is often necessary to determine whether a specified key exists in the array. This is a very basic but practical issue. Today, we will discuss how to determine whether there is a specified key in a PHP array.

First of all, we need to clarify several basic array functions in PHP. Among them, the most commonly used ones should be array_key_exists() and isset(). Next, we will introduce these two functions and how to use them in detail.

1. array_key_exists()

array_key_exists() is a PHP built-in function used to determine whether the specified key exists in the array. This function receives two parameters, the first is the key name, and the second is the array.

Function definition:

bool array_key_exists (mixed $key, array $array)

Parameter description:

key: The key name to be checked. Can be any type of value, including NULL.

array: The array to be checked. Must be an array and be the second parameter of the function.

Return value:

If the specified key exists in the array, TRUE is returned, otherwise FALSE is returned.

The following is a simple example:

$arr = array('name' => 'Jack', 'age' => 20, 'country' => 'China');

if (array_key_exists('name', $arr)) {
    echo '数组中存在键名为 name 的元素';
} else {
    echo '数组中不存在键名为 name 的元素';
}

The running result is: there is an element with the key name name in the array

2. isset()

isset() is also a PHP built-in function used to detect whether a variable has been set and is not NULL. This function accepts one or more parameters, which can be values ​​of any type.

Function definition:

bool isset ( mixed $var [, mixed $... ] )

Parameter description:

var: required parameter , variable name or array element. Can be any type of value, including NULL.

...: optional parameter, can be multiple parameters. Each parameter is a variable name or array element.

Return value:

If the variable has been set and is not NULL, return TRUE, otherwise return FALSE.

Let’s look at a specific example:

$arr = array('name' => 'Jack', 'age' => 20, 'country' => 'China');

if (isset($arr['name'])) {
    echo '数组中存在键名为 name 的元素';
} else {
    echo '数组中不存在键名为 name 的元素';
}

The running result is: there is an element with the key name name in the array

As can be seen from this example, using isset () function to determine whether an element exists in an array has basically the same effect as using the array_key_exists() function. The difference between the two is that the isset() function can also be used to detect whether a variable has been set, not just to detect array elements.

However, it should be noted that the isset() function will report an error for undefined variables. If this function is used to judge undefined variables, it may cause the program to terminate abnormally.

In addition, there is another way to determine whether there is a specified key in the PHP array, which is to use the in_array() function. But it should be noted that the in_array() function is used to search for a given value in the array and return whether it exists or not, rather than searching for the key name. Therefore, it is not appropriate to use the in_array() function to determine whether a key exists in the array.

In actual development, we usually choose which function to use based on our own needs. For situations where you only need to detect whether a key name exists, you can use the array_key_exists() or isset() function, both of which have similar effects; and if you need to search whether a value exists in an array, you can use the in_array() function.

To summarize, today we discussed how to determine whether there is a specified key in a PHP array. By explaining how to use the array_key_exists() and isset() functions, I hope it will be helpful to readers in their daily development work.

The above is the detailed content of How to determine if a specified key exists in a PHP array. 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