vote up 2 vote down star
1

I'm wondering if its possible to add new class data members at run-time in PHP?

flag

2 Answers

vote up 8 vote down check

Yes.

$prop = 'newname';
$obj->$prop = 42;

will do the same thing as:

$obj->newname = 42;

Either one will add "newname" as a property in $obj if it does not yet exist.

link|flag
vote up 2 vote down

It is. You can add public members are run time with no additional code, and can affect protected/private members using the magical overloading methods __get() / __set(). See here for more details.

link|flag

Your Answer

Get an OpenID
or

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