Is it possible to add to PHP objects on the fly? Say I have this code:
$foo = stdObject();
$foo->bar = 1337;
Is this valid PHP?
|
Is it possible to add to PHP objects on the fly? Say I have this code:
Is this valid PHP? |
|||
|
That's technically not valid code. Try something like:
|
|||||||
|
|
It is valid as long as you use valid class eg
You had these problems:
More Info: |
|||
|
|
|
You're close.
This needs to be:
Then it will work. |
|||
|
|
|
Yes it is. The only problem in your code is that it's missing a
|
||||
|
|
$foo = new stdClass();stdClassis not a function – Juan Mendes Jun 26 '12 at 17:55