I have abandoned all hope of ever being able to overload my constructors in PHP, so what I\'d really like to know is why.
Is there even a reason for it? Doe
I'm really no OOP expert, but as I understand it overloading means the ability of a method to act differently depending in the parameters it receives as input. This is very much possible with PHP, you just don't declare the input types since PHP does not have strong typing, and all the overloading is done at runtime instead of compile time.