uopz_copy
uopz_copy
Copy a function
Closure **uopz_copy** string $function
Closure **uopz_copy** string $class string $function
Copy a function by name
classThe name of the class containing the function to copy
functionThe name of the function
A Closure for the specified function
Voorbeeld: 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'));
?>
string(5) "dummy"