uopz_overload

(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
doc_php
2016-02-24 15:54:09
Comments
Leave a Comment

Please login to continue.