Is there any advantage to using __construct() instead of the class\'s name for a constructor in PHP?
__construct()
Example (__construct):
__construct
The main advantage I see for __construct, is that you don't have to rename your constructor if you change your class name.