Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my quest in trying to learn more about OOP in PHP. I have come across the constructor function a good few times and simply can't ignore it anymore. In my understanding, the constructor is called upon the moment I create an object, is this correct?

But why would I need to create this constructor if I can use "normal" functions or methods as their called?

cheers, Keith

share|improve this question
Also, see stackoverflow.com/questions/403756/… which asks the same question – Adam Dec 28 '10 at 3:00
1  
ha ha, that's hilarious. That's my question I completely forgot about. I was looking in the Related Questions when asking my question and didn't see anything. Apologies as I can't delete this question as there are too many answers. – Keith Donegan Dec 28 '10 at 3:07
2 years left, nothing chaged ))) – zerkms Dec 28 '10 at 3:13
tell me about it :) – Keith Donegan Dec 28 '10 at 14:05

5 Answers

up vote 9 down vote accepted

Yes the constructor is called when the object is created.

A small example of the usefulness of a constructor is this

class Bar
{
    // The variable we will be using within our class
    var $val;

    // This function is called when someone does $foo = new Bar();
    // But this constructor has also an $var within its definition,
    // So you have to do $foo = new Bar("some data")
    function __construct($var)
    {
        // Assign's the $var from the constructor to the $val variable 
        // we defined above
        $this->val = $var
    }
}

$foo = new Bar("baz");

echo $foo->val // baz

// You can also do this to see everything defined within the class
print_r($foo);

UPDATE: A question also asked why this should be used, a real life example is a database class, where you call the object with the username and password and table to connect to, which the constructor would connect to. Then you have the functions to do all the work within that database.

share|improve this answer
Thanks for the reply Ólafur. If possible, could you comment each line for me to better understand? K – Keith Donegan Dec 31 '08 at 18:54

The constructor allows you to ensure that the object is put in a particular state before you attempt to use it. For example, if your object has certain properties that are required for it to be used, you could initialize them in the constructor. Also, constructors allow a efficient way to initialize objects.

share|improve this answer
Thanks Brian, perfect explanation! – Keith Donegan Dec 31 '08 at 18:57
1  
+1 for mentioning state – Andrew Hare Dec 31 '08 at 18:58

The idea of constructor is to prepare initial bunch of data for the object, so it can behave expectedly.

Just call a method is not a deal, because you can forget to do that, and this cannot be specified as "required before work" in syntax - so you'll get "broken" object.

share|improve this answer
1  
+1 for "required before work". That's what a constructor is for. – netcoder Dec 28 '10 at 3:18
1  
@Keith: To quote Wikipedia (and I usually don't, but it is well written in that case): "[The constructors] have the task of initializing the object's data members and of establishing the invariant of the class, failing if the invariant isn't valid. A properly written constructor will leave the object in a valid state." – netcoder Dec 28 '10 at 3:37
1  
@netcoder: yep, I looked there right after I had written my answer - to test myself ;-) Since there is no significant difference and since SO is a site where people answer (not just copy-paste) - I'll leave mine, even though it is written with worse english ;-) – zerkms Dec 28 '10 at 3:41

Constructors are good for a variety of things. They initialize variables in your class. Say you are creating a BankAccount class. $b = new BankAccount(60); has a constructor that gives the bank account an initial value. They set variables within the class basically or they can also initialize other classes (inheritance).

share|improve this answer

The constructor is for initialisation done when an object is created.

You would not want to call an arbitrary method on a newly created object because this goes against the idea of encapsulation, and would require code using this object to have inherent knowledge of its inner workings (and requires more effort).

share|improve this answer
1  
calling a setter method, per example, after the object has been created do not violate encapsulation at all. The constructor is used to define properties/arguments that are required by the object to behave as expected. – netcoder Dec 28 '10 at 3:21
@netcoder True, but if the constructor involved, say, connecting to a database, you wouldn't necessarily expect the calling code to have to call a method to do this, as you might not even want the calling code to know where the object gets its info from. Good point, though – Adam Dec 28 '10 at 3:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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