<?php
require_once 'PEAR.php';
class myClass {
function myClass()
{
PEAR::registerShutdownFunc(array('myClass', 'shutdown'),
array('param1', 'param2'));
}
function shutdown( $param1, $param2)
{
// do something before we will die
}
}
?>
Disclaimers: This documentation is provided only for the benefits of our website hosting
customers.
For authoritative source of the documentation, please refer to http://pear.php.net/manual/