Jump to content

array_key_exists behavior


ennemkay

Recommended Posts

Hi,

 

Just wondering if someone can explain to me how this code works:

 

 

if (array_key_exists('a',array('a'))) { echo 'yes'; }

 

 

The "if" predicate doesn't evaluate to "true" as I expected, and I'm trying to understand why. TIA

Link to comment
Share on other sites

The array_key_exists() function returns whether the array has the specified key, or not. To steal a comment from the manual, "An array in PHP is … a type that associates values to keys." (http://php.net/arrays). In your example, your array has only one value "a" and its key is 0.

 

It looks like the function you really wanted was in_array() (http://php.net/in_array), which returns whether the array as the specified value, or not.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.