php8.5
Home/ Manual/ uopz / functions/ uopz_copy

uopz_copy

PHP function Deprecated as of PECL uopz 5 Edit on GitHub ✎

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

Copy a function

Function-5-0-0

Description

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

Copy a function by name

Parameters

class

The name of the class containing the function to copy

function

The name of the function

Return Values

A Closure for the specified function

Examples

uopz_copy() example

php
<?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'));
?>

The above example will output:

output
string(5) "dummy"

Source: reference/uopz/functions/uopz-copy.xml · from the official PHP manual (php/doc-en)