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

I see this error only after upgrading my PHP environment. The error points to this line of code:

error:

Creating default object from empty value

code:

$res->success = false;

Do I first need to declare my $res object?

share|improve this question
How/Where are you initiating $res ? – NAVEED Jan 17 '12 at 19:45

2 Answers

up vote 17 down vote accepted

Your new environment must have E_STRICT warnings enabled.

In order not to violate strict standrads, assuming you are trying to create a generic object and assign the property success, You need to declare $res as an object of stdClass:

$res = new stdClass();
$res->success = false;
share|improve this answer
Thanks Michael Berkowski! – GianFS May 12 at 5:16

no you do not .. it will create it when you add the success value to the object.the default class is inherited if you do not specify one.

share|improve this answer
3  
Though it will return the Strict standards message... it is simply good practise to create the object manually first, and while PHP is relatively tolerant of shoddy coding practise, you shouldn't ignore doing things correctly. – Mark Baker Jan 17 '12 at 19:49
2  
understood, i was just answering the question with a simple yes or no, not defining or defending best practices :) – Silvertiger Jan 17 '12 at 19:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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