Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want code to run whenever I create a new object. For example, see this:

<?php

class Test {
echo 'Hello, World!';
}

$test = new Test;

?>

I want it to echo "Hello, World!" whenever I create a new instance of this object, without calling a function afterward. Is this possible?

share|improve this question

3 Answers

up vote 8 down vote accepted

You should read about constructor

<?php
class MyClass {
   public function __construct() {
      echo "This code is executed when class in instanciated.";
   }
}
?>
share|improve this answer
class Test {
 function __construct(){
    echo 'Hello, World!';
 }
}
share|improve this answer
1  
Worth mentioning: this is PHP5+ way.. Shouldn't matter but still.. – dr Hannibal Lecter May 17 '09 at 23:47
3  
To be fair, PHP4 is largely obsolete now. – Turnor May 18 '09 at 0:43

Or on PHP 4 use:

class Test {
    function Test {
        echo 'Hi';
    }
}

Edit: This also works on PHP 5, so this is the best way to do it.

share|improve this answer
5  
I think __construct() is the better way, because it doesn't work in PHP4. :-) – Craig Lewis May 21 '09 at 0:36

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.