1.

What are the __construct() and __destruct() methods in a PHP class?

Answer»

Constructor and a Destructor both are special functions which are automatically called when an object is created and destroyed.

Example

class Animal
{
    PUBLIC $NAME = "Hello";    
    public function __construct($name)
    {
        echo "Live HERE";
        $this->name = $name;
    }    
    public function __destruct()
    {
        echo "DESTROY here";
    }
}
$animal = new Animal("Bob");
echo "My Name is : " . $animal->name;



Discussion

No Comment Found