PHP - Classes and Objects
What will be the output of the following PHP code?
class Test {
function __construct() {
echo "Constructed\n";
}
function __destruct() {
echo "Destructed\n";
}
}
$obj = new Test();
echo "Hello\n";
unset($obj);