How do I access a PHP object attribute having a dollar sign?

jessehare

New Member
I have a PHP Object with an attribute having a dollar ($) sign in it.How do I access the content of this attribute ?Example :\[code\]echo $object->variable; // Okecho $object->variable$WithDollar; // Syntax error :-(\[/code\]
 
Back
Top