PHP Array_key_exists An implementation method that checks whether a key name or index exists in an array, arraykeyexists
Array_key_exists ()
The PHP array_key_exists () function is used to check if the given key name or index exists in the array and returns TRUE if one exists, otherwise FALSE.
Grammar:
the bool Array_key_exists (mixed key, array search) parameter key is the given key name or index and can be any value that can be indexed as an array.
The Array_key_exists () function is also available for objects.
Example:
<?php$arr_a = array (' id ' = = 1, ' name ' = ' "admin"), if (array_key_exists (' name ', $arr _a)) { echo ' key name exists in array $ In the Arr_a ';} else { echo ' key name does not exist in array $arr _a ';}? >
The example output is as follows:
The key name name exists in the array $arr _a array_key_exists () function returns TRUE for array elements whose value is null. To check if the array element is NULL, use Isset ().
The above PHP array_key_exists check whether the key name or index exists in the array implementation method is small to share all the content of everyone, I hope to give you a reference, but also hope that we have a lot of support to help guests home.
http://www.bkjia.com/PHPjc/1136644.html www.bkjia.com true http://www.bkjia.com/PHPjc/1136644.html techarticle php array_key_exists to check if the key name or index exists in the array, arraykeyexists array_key_exists () PHP array_key_exists () function is used to check the given key name or index ...