vote up 0 vote down star

Hey, I just started pondering this and figured I could use some input.

I've long been using '__construct()' for all my constructor needs in php5, even though the obviously better looking 'ClassName()' would work just as well. I remember switching to __construct because it would forcibly break on older php installations but I don't think that's a requirement anymore.

My question is: What are some good reasons to either stick with __construct() or go with ClassName()?

flag

71% accept rate

closed as exact duplicate by Tomalak, Kris, Gumbo, Paolo Bergantino, Greg Mar 9 at 20:36

1 Answer

vote up 0 vote down check

This is probably a duplicate of:

http://stackoverflow.com/questions/217618/construct-vs-sameasclassname-for-constructor-in-php

link|flag
thanks, i didn't find that one. – Kris Mar 9 at 20:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.