Is it possible in PHP (as it is in C++) to declare a class method OUTSIDE the class definition?
PHP (as it is in C++)
class method
class definition?
No it is not posible. if you define function/method outside class construct it becomes global function.
No.
You can extend previously declared classes, though, if that helps.