- register_shutdown_function: documentation ( source)
<?php
class A {
function __destruct() {
print '__destruct';
}
}
register_shutdown_function(function () {
new A;
register_shutdown_function(function () {
new A;
});
throw new Exception;
});