runkit7_function_copy

(PECL runkit7 >= Unknown)

runkit7_function_copy Copy a function to a new function name

Descrierea

runkit7_function_copy ( string $funcname , string $targetname ) : bool

Parametri

funcname

Name of the existing function

targetname

Name of the new function to copy the definition to

Valorile întoarse

Întoarce valoarea true în cazul succesului sau false în cazul eșecului.

Exemple

Example #1 A runkit7_function_copy() example

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

Exemplul de mai sus va afișa:

In a function
In a function

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top