uopz_copy

(PECL uopz 1 >= 1.0.4, PECL uopz 2)

uopz_copyCopy a function

Uyarı

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

Açıklama

uopz_copy(string$function): Closure
uopz_copy(string$class, string$function): Closure

Copy a function by name

Bağımsız Değişkenler

class

The name of the class containing the function to copy

function

The name of the function

Dönen Değerler

A Closure for the specified function

Örnekler

Örnek 1 uopz_copy() example

<?php
$strtotime
= uopz_copy('strtotime');

uopz_function("strtotime", function($arg1, $arg2) use($strtotime) {

var_dump($arg1);
});

var_dump(strtotime('dummy'));
?>

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

string(5) "dummy"
To Top