Mantis - Quercus
Viewing Issue Advanced Details
573 minor always 12-26-05 14:15 12-27-05 17:48
creich  
creich  
normal  
closed  
fixed  
none    
none 3.0.18  
0000573: register_shutdown_function not implemented
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd"> [^]
<html xmlns="http://www.w3.org/1999/xhtml"> [^]
<head></head>
<body>
<?php
class CallbackClass {
   function CallbackFunction() {
       echo "instance!!!
";
   }

   function StaticFunction() {
       echo "static!!!
";
   }
}

function NonClassFunction() {
  echo "no class!!!!!
";
}

register_shutdown_funtion('NonClassFunction');

register_shutdown_function(array('CallbackClass', 'StaticFunction'));

$o =& new CallbackClass();
   register_shutdown_function(array($o, 'CallbackFunction'));
?>
</body>
</html>

Notes
(0000589)
ferg   
12-27-05 17:48   
php/1c06