Complete PHP Array Reference
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.
| Parameter | Description |
|---|---|
| key | Required. Specifies the key |
| array | Required. Specifies an array |
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)
The output of the code above will be:
The output of the code above will be:
The output of the code above will be:
Complete PHP Array Reference
Your message has been sent to W3Schools.