PHP Array_key_exists An implementation method that checks whether the key name or index exists in an array _php instance

Source: Internet
Author: User

Array_key_exists ()

The PHP array_key_exists () function checks whether a given key name or index exists in an array, returns TRUE if it exists, or returns 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 can also be used for objects.

Example:

<?php
$arr _a = array (' ID ' => 1, ' name ' => ' admin ');
if (array_key_exists (' name ', $arr _a)) {
  echo ' key name exists in array $arr _a ';
} else {
  echo ' key name does not exist in array $arr _a '; c10/>}
?>

The example output is as follows:

The key name name exists in the array $arr _a the array_key_exists () function returns TRUE for an array element that has a value of NULL. To check whether an array element is NULL, use Isset ().

The above PHP array_key_exists check the key name or whether the index exists in the array of the implementation method is small series to share all the content, hope to give you a reference, but also hope that we support cloud habitat community.

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.