Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's my script

$terms = ['username' => $uri];
$user = $collection->findOne($terms);

result

array (size=4)
  '_id' => 
    object(MongoId)[29]
      public '$id' => string '4ff6e96bb0b4599016000006' (length=24)
  'username' => string 'me' (length=10)
  'name' => string 'Yes, It's me!' (length=16)

Get Name

$name = $user['name'];

But, how can i get $user['_id'] ?

I try $user['_id'] NOT WORK

Please help. Thanks

UPDATE

Problem solved with $user['_id']->{'$id'}

share|improve this question
What version of PHP and the MongoDB driver are you using? Although the var_dump output shows your _id is an ObjectId, $user['_id'] should still stringify to the public '$id' value (4ff6e96bb0b4599016000006) in your example. – Stennie Jul 9 '12 at 7:02

closed as not constructive by tereško, PeeHaa 埽, webarto, j0k, Graviton Jul 13 '12 at 9:17

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

$user['_id']->{'$id'} is not necessary and ugly, you can simply cast it to string to get id $id = (string)$user['_id'];

share|improve this answer