I have a PHP Object with an attribute having a dollar ($) sign in it.
How do I access the content of this attribute ?
Example :
echo $object-
I assume you want to access properties with variable names on the fly. For that, try
echo $object->{"variable".$yourVariable}