No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

runkit7_function_copy

(PECL runkit7 >= Unknown)

runkit7_function_copy Copy a function to a new function name

Description

runkit7_function_copy(string $source_name, string $target_name): bool

PHP: runkit7_function_copy - Manual Home of Manuel PHP  Contents Haut

Parameters

source_name

Name of the existing function

target_name

Name of the new function to copy the definition to

PHP: runkit7_function_copy - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns true on success or false on failure.

PHP: runkit7_function_copy - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 A runkit7_function_copy() example

<?php
function original() {
  echo 
"In a function\n";
}
runkit7_function_copy('original','duplicate');
original();
duplicate();
?>

The above example will output:

In a function
In a function

PHP: runkit7_function_copy - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph