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
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top