W3Schools.com

PHP array_key_exists() Function


PHP Array Reference Complete PHP Array Reference

Definition and Usage

The array_key_exists() function checks an array for a specified key, and returns true if the key exists and false if the key does not exist.

Syntax

array_key_exists(key,array)

Parameter Description
key Required. Specifies the key
array Required. Specifies an array


Tips and Notes

Tip: Remember that if you skip the key when you specify an array, an integer key is generated, starting at 0 and increases by 1 for each value. (See example 3)


Example 1

<?php
$a=array("a"=>"Dog","b"=>"Cat");
if (array_key_exists("a",$a))
  {
  echo "Key exists!";
  }
else
  {
  echo "Key does not exist!";
  }
?>

The output of the code above will be:

Key exists!


Example 2

<?php
$a=array("a"=>"Dog","b"=>"Cat");
if (array_key_exists("c",$a))
  {
  echo "Key exists!";
  }
else
  {
  echo "Key does not exist!";
  }
?>

The output of the code above will be:

Key does not exist!


Example 3

<?php
$a=array("Dog",Cat");
if (array_key_exists(0,$a))
  {
  echo "Key exists!";
  }
else
  {
  echo "Key does not exist!";
  }
?>

The output of the code above will be:

Key exists!


PHP Array Reference Complete PHP Array Reference
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$3.98 Unlimited Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Best Website Templates Top CSS Templates
CREATE HTML Websites
EASY WEBSITE BUILDER
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE