php-arrays function-array_key_exists-Check if the given key name or index exists in the array _php tutorial

Source: Internet
Author: User
Array_key_exists () checks whether the given key name or index exists in the array

function
The function returns a Boolean value that
Returns true if the specified key exists in the specified array, otherwise false
The function can also be used with the object, that is, to check whether the specified key is in the object
"Scope of Use"
php4>4.1.0, PHP5.
Use
BOOL Array_key_exists (mixed Key,array search)
key/Required/Key Name
search/an array of required/found
Example
[PHP]
$search _array = Array (' First ' =>1, ' second ' =>4);
if (array_key_exists (' first ', $search _array)) {
echo "The ' first ' element is in the array";
}
/*
The ' first ' element is in the array
*/

Excerpts from Zuodefeng's notes

http://www.bkjia.com/PHPjc/478212.html www.bkjia.com true http://www.bkjia.com/PHPjc/478212.html techarticle array_key_exists () checks whether the given key name or index exists in the array "function" The function returns a Boolean value if the specified key exists in the specified array .

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.