Do any of you know how to get this to work? The 'getLaVidaCard()' method returns an object, so I would've thought this would work. But I just get a parse error.
$this->getLaVidaCard()->suit
$card = $this->getLaVidaCard(); $suit = $card->suit;
What dramack said. You'll have to wait 'til PHP5 before being able to dereference objects like that.