Hello,
Is there a substitute for -> in oops statements ?
ie: $this->field = "test" $this.field = "test" $this::field = "test"
The first one is correct, the other 2 don't work .. does anything other then "->" work?
David
sometimes $this[field] will work -S
Why would you need an alias for ->?
FYI
$this.field has no place in PHP AFAIK
:: is used when calling overridden methods, RTFM for more info.