vote up 0 vote down star

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.

flag

I'm an idiot. I suppose everyone makes the silly mistakes sometimes. First one gets it, thanks to all. – James Aug 7 at 9:18

4 Answers

vote up 4 vote down check

Shouldn't it be

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

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

link|flag
1  
doh ... sometimes, it's all too obvious ... :) – back2dos Aug 7 at 9:18
1  
Have a cup of tea – Greg Aug 7 at 9:23
vote up 2 vote down

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.

link|flag
vote up 1 vote down
$u = new User();
$u->id = $obj['user_id'];

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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