PHP - Manual: uopz_overload
2024-11-14
(PECL uopz 1, PECL uopz 2)
uopz_overload — Overload a VM opcode
This function has been REMOVED in 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
示例 #1 uopz_overload() example
<?php
uopz_overload(ZEND_EXIT, function(){});
exit();
echo "Hello World";
?>
以上例程会输出:
Hello World
官方地址:https://www.php.net/manual/en/function.uopz-overload.php