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

BY Best Interview Question ON 06 Jul 2020

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;