<?php
class Test {

public function __construct() {
    echo "Hi";
}

public function __destruct() {
     new Test();
}

}

new Test();