Who thought this would be a great idea? This is insane.
(PECL uopz 1, PECL uopz 2)
uopz_overload — Overload a VM opcode
Această funcție a fost ELIMINATĂ în PECL uopz 5.0.0.
Overloads the specified opcode
with the user defined function
opcode
A valid opcode, see constants for details of supported codes
callable
Example #1 uopz_overload() example
<?php
uopz_overload(ZEND_EXIT, function(){});
exit();
echo "Hello World";
?>
Exemplul de mai sus va afișa:
Hello World