class Hoge {
function __construct() {
echo "construct";
}
function __destruct() {
echo "destruct";
}
}

new Hoge();

これをしてみればわかる