Comment puis-je obtenir une propriété dans un PHP basé sur une chaîne? Je l'appellerai magic
. Alors, qu'est-ce que magic
?
$obj->Name = 'something';
$get = $obj->Name;
serait comme...
magic($obj, 'Name', 'something');
$get = magic($obj, 'Name');