Jump to content

in_array not working


c_pattle

Recommended Posts

I have a section in one of my scripts that checks for a value in array and the value doesn't exist in the array then it add it.  This works fine for single array but not for mulit-dimensional arrays.  Has anyone had a similar problem and knows a good solution?

 

if(in_array($words[$i], $searchWords)){
    //Do nothing
}else{
    $searchWords[] = $words[$i];
}

Link to comment
Share on other sites

Have you checked if $words[$i] has the value you expect? Do you have any white-space as part of the data in the $words array that would prevent a comparison from working? Are the letter cases the same?

 

If $words is already an array, you can just use array_diff to find the words that are not already in the second array, then to add them to the second array, just use array_merge. There's no need to loop.

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.