uopz_copy
(PECL uopz 1 >= 1.0.4, PECL uopz 2)
uopz_copy — Copy a function
警告
この関数は、PECL uopz 5.0.0 で 削除 されました。
説明
Copy a function by name
パラメータ
class
-
The name of the class containing the function to copy
function
-
The name of the function
戻り値
A Closure for the specified function
例
例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'));
?>
上の例の出力は以下となります。
string(5) "dummy"
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google