(PECL uopz >= 1.0.0)
Overload a VM opcode
void uopz_overload ( int $opcode, Callable $callable )
Overloads the specified opcode with the user defined function
Parameters:
opcode
A valid opcode, see constants for details of supported codes
callable
A valid opcode, see constants for details of supported codes
Returns:
Examples:
uopz_overload() example
<?php
uopz_overload(ZEND_EXIT, function(){});
exit();
echo "Hello World";
?>
The above example will output something similar to:
Hello World
Please login to continue.