Jump to content

Recommended Posts

what exactly do you want to do to duplicate values? if you want to remove them, whereas only one of the duplicate values will be present, you can use array_unique. Otherwise, it will get a little more in depth.

 

Edit: Pika beat me to it.

in that case.. you can most likely compare the count of the original array, and the count of the new array after using array_unique. If the 2 counts are equal, then there are no duplicates and you should proceed with the rest of your code, else, return an error.

In that case, you could always use in_array() when the user attempts to add an element. If in_array() returns TRUE, disallow the action, and alert the user. But really, I guess it depends on how you want the application to flow.

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.