uopz_copy
(PECL uopz 1 >= 1.0.4, PECL uopz 2)
uopz_copy — Copy a function
Warning
Esta função foi REMOVIDA na uopz 5.0.0 no PECL.
Descrição
Copy a function by name
Parâmetros
class
-
The name of the class containing the function to copy
function
-
The name of the function
Valor Retornado
A Closure for the specified function
Exemplos
Example #1 uopz_copy() example
<?php
$strtotime = uopz_copy('strtotime');
uopz_function("strtotime", function($arg1, $arg2) use($strtotime) {
/* can call original strtotime from here */
var_dump($arg1);
});
var_dump(strtotime('dummy'));
?>
O exemplo acima produzirá:
string(5) "dummy"