Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Get PHP class property by string

Is there a cleaner way to do this? it does not compile

$object1->name = 'my_name';
$object1->address = 'address';
$object2->somefield->($object1->name) = $object1;

it works only if i assign to another variable $object1->name

$object1->name = 'my_name';
$object1->address = 'address';
$temp = $object1->name;
$object2->somefield->$temp = $object1;
share|improve this question

marked as duplicate by Álvaro G. Vicario, shiplu.mokadd.im, raina77ow, tereško, Jeffrey Dec 11 '12 at 21:15

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 8 down vote accepted

Try this:

$object2->somefield->{$object1->name} = $object1;
share|improve this answer
+1, even this answer got too much up-votes :P – shiplu.mokadd.im Dec 11 '12 at 15:43
Good! Thank you!! It there some documentation to this somewhere? :) – Pulz Dec 11 '12 at 15:50
php.net/manual/en/language.types.string.php (under the 'Complex (curly) syntax' title) – aykut Dec 11 '12 at 15:53
Thank you Aykut! – Pulz Dec 11 '12 at 15:57

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