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

If i have an stdObject say, $a.

Sure there's no problem to assign a new property, $a,

$a->new_property = $xyz;

But then I want to remove it, so unset is of no help here.

So,

$a->new_property = null;

Is kind of it. But is there a more 'elegant' way?

Thanks in advance.

share|improve this question
Can you post code how you tried with unset ? In mine sense unset should work.But possibly you duplicating the context – Arshdeep Aug 30 '10 at 13:29

1 Answer

up vote 26 down vote accepted
unset($a->new_property);

this works for array elements, variables, and object attributes

** EDIT **

I don't know how you were using unset(), but this is how it works for me :

$a = new stdClass();

$a->new_property = 'foo';
var_export($a);  // -> stdClass::__set_state(array('new_property' => 'foo'))

unset($a->new_property);
var_export($a);  // -> stdClass::__set_state(array())
share|improve this answer
Thanks, my silliness :) It works all ok! :) – valk Aug 30 '10 at 13:33

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.