文字

uopz_overload

(PECL uopz >= 1.0.0)

uopz_overloadOverload a VM opcode

说明

void uopz_overload ( int $opcode , Callable $callable )

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" ;
?>

以上例程的输出类似于:

Hello World
上一篇: 下一篇: