views:

44

answers:

1

should i use Classname() or __construct() as constructor in CodeIgniter?

both work, which should i use?

+6  A: 

Classname() is the old way (i.e. PHP 4 way).

__construct() is the new (i.e. PHP 5) way.

You should use the second one, if your application is written with PHP 5 -- and you should write your applications with PHP 5 in mind !


See the Constructors and Destructors section in the manual, which states (quoting) :

For backwards compatibility, if PHP 5 cannot find a __construct() function for a given class, it will search for the old-style constructor function, by the name of the class.

Pascal MARTIN