Non-static method .... should not be called statically

A

Anonymous

Guest
You should not be calling the non-static method statically.
 
If the method is explicitly declared as static then it should be fine... However, yes, as you are discovering, the standards of coding from PHP4 to PHP5 have shifted.
 
Back
Top