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

I'm getting an error in my PHP code Strict Standards: Creating default object from empty value. The code I'm using is:

$u = new User();
$user->id = $obj['user_id'];

The error is appearing on the second line, where I set the id property. The user class has id set as a private property with magic getters and setters defined.

Strangely, the exact same code works without the strict error elsewhere - so my main question is exactly what the error means? Hopefully then I can deduce what the problem is with the code.

share|improve this question
I'm an idiot. I suppose everyone makes the silly mistakes sometimes. First one gets it, thanks to all. – James Inman Aug 7 '09 at 9:18
1  
I made the same silly mistake, glad you asked the question. – nute Nov 15 '12 at 17:45

closed as too localized by Gordon Mar 23 at 7:26

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

up vote 32 down vote accepted

Shouldn't it be

$u->id = $obj['user_id'];

Your current code is creating $user as a new StdClass object.

share|improve this answer
4  
doh ... sometimes, it's all too obvious ... :) – back2dos Aug 7 '09 at 9:18
7  
Have a cup of tea – Greg Aug 7 '09 at 9:23

Perhaps you intended

$u->id=$obj['user_id'];

You get the error because $user doesn't exist, but from the context it knows it should be an object.

share|improve this answer
$u = new User();
$u->id = $obj['user_id'];

...........................

share|improve this answer

Not sure if this is relevant, but in your code snippet you create a variable called $u, but access $user...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.