PHP Velho Oeste 2024

uopz_overload

(PECL uopz 1, PECL uopz 2)

uopz_overloadOverload a VM opcode

Uyarı

uopz 5.0.0 sürümünde bu işlev PECL'de KALDIRILMIŞTIR.

Açıklama

uopz_overload(int $opcode, Callable $callable): void

Overloads the specified opcode with the user defined function

Bağımsız Değişkenler

opcode

A valid opcode, see constants for details of supported codes

callable

Dönen Değerler

Örnekler

Örnek 1 uopz_overload() example

<?php
uopz_overload
(ZEND_EXIT, function(){});

exit();
echo
"Hello World";
?>

Yukarıdaki örneğin çıktısı:

Hello World
add a note add a note

User Contributed Notes 1 note

up
10
Anonymous
8 years ago
Who thought this would be a great idea? This is insane.
To Top