GoLang uopz_copy

request it (293)
GoLang replacement for PHP's uopz_copy [edit | history]



Do you know a GoLang replacement for PHP's uopz_copy? Write it!

PHP uopz_copy

PHP original manual for uopz_copy [ show | php.net ]

uopz_copy

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

uopz_copyCopy a function

Warning

This function has been REMOVED in PECL uopz 5.0.0.

Description

Closure uopz_copy ([ string $class ], string $function )

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

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

The above example will output something similar to:

string(5) "dummy"