PHP - Classes and Objects
What will be the output of this PHP code?
class Sample {
function __destruct() {
echo "Goodbye!";
}
}
$obj = new Sample();
echo "Hello!";
unset($obj);