> I think we should always use -> UNLESS the method is a "static" method,
> in that case use ::. IMO that's the most logic thing to do.
>
> Derick
All SPL methods are non-static. (and I think that SOAP's aren't static too)
So, Should I change everything from xxx::xxx to xxx->xxx ?
Nuno
On Thu, 29 Apr 2004, Gabor Hojtsy wrote:
> Hi!
>
> > I have some questions about how I should document OO functions.
> > May I follow George's style and include both OO and non-OO function in the
> > same file?
> > For example: tidy_parse_string and $tidy->ParseString()
Yes, that's the nicest way
Hi!
I have some questions about how I should document OO functions.
May I follow George's style and include both OO and non-OO function in the
same file?
For example: tidy_parse_string and $tidy->ParseString()
How do I document variables of an object? In the __contructor page? or in
the reference.