Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6373471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:22:06+00:00 2026-05-25T01:22:06+00:00

I’ve created a query in PHP which is used to add a user to

  • 0

I’ve created a query in PHP which is used to add a user to an array. Right now it checks to see if they exist and if they don’t it adds them to the array. Here’s the full code:

try{ $this->users_db->update( 
    array( 
      '_id' => new MongoId($user_id) , 
      new MongoId( $group_id ) => array('$nin'=>USER_GROUPS) 
    ), 
    array(
     '$push' => array(USER_GROUPS => array( GROUP_ID => new MongoId($group_id), USER_GROUP_NOTIFY => true ) ) 
    ) 
); }
catch(Exception $e)
{ return false; }

The problem is that PHP is giving me the Warning “Illegal offset type” since MongoId() is an object and objects can’t be used as keys in arrays. Any ideas about how to work around this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T01:22:06+00:00Added an answer on May 25, 2026 at 1:22 am

    I think you have the order of your “arguments” to $nin backwards. Your query is equivalent to something like this in the mongo shell:

    db.users.update({_id: ObjectId("..."), ObjectId("..."): {$nin: ["user_groups"]}}, ...);
    

    Which reads like English, left to right, when pronouncing “$nin” as “is not in”. A more correct, by MongoDB’s grammar, pronunciation is “does not contain”, so your query is actually saying something like “where some ObjectId does not contain this array”, which makes little sense when said out loud.

    With that in mind, your query should look like:

    db.users.update({_id: ObjectId("..."), user_groups: {$nin: [ObjectId("...")]}}, ...);
    

    When running into issues like this with updates or removes, it’s often useful to try the query spec portion as an argument to find() or findOne() to determine what’s wrong there. Once you can find the document you want to update, you can re-write as a call to update(), remove(), etc.

    Also, you should be aware that there is an $addToSet atomic operator which performs this sort of check for you atomically in the database. You could try:

    db.users.update({_id: ObjectId("...")}, {$addToSet: {user_groups: ObjectId("...")}});
    

    EDIT: For future reference to OP and other askers, see mongodb docs on query operators and mongodb docs on update operators.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this is what i have right now Drawing an RSS feed into the php,
I used javascript for loading a picture on my website depending on which small
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I have a jquery bug and I've been looking for hours now, I can't
I would like to count the length of a string with PHP. The string
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.