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

I am getting an error like Creating default object from empty value on line 196($settings->{$v->Name} = $setting; ). I think, it's because I have upgraded php to 5.4 version. So that I have set $setting =(object) null instead of $setting =null. But i couldn't correct it on line 196($settings->{$v->Name} = $setting;).

$settings;

 foreach($SettingsRows as $v)
      {
    $setting =(object) null;

    $setting->ID = $v->ID;
    $setting->Name = $v->Name;
    $setting->Value = $v->Value;
    $setting->Class = $v->ClassName;
    $setting->Form = new $setting->Class($setting);
    $settings->{$v->Name} = $setting;
}

How can I set $setting value to $settings->{$v->Name} ? What I need to change here?

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

Your code looks sketchy, but apparently you need $settings = new stdClass before the foreach loop. (new stdClass is the same thing as (object) null, but more clear in my opinion.)

And it really looks like $settings ought to just be an array (e.g., $settings[$v->Name] = $setting;), but I have no idea what you are trying to do.

share|improve this answer
Thanks for your reply. I set $settings = new stdClass before the foreach loop. – Zendie Jul 12 '12 at 6:22

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.