CakeFest 2024: The Official CakePHP Conference

runkit7_function_copy

(PECL runkit7 >= Unknown)

runkit7_function_copy Copy a function to a new function name

Beschreibung

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

Parameter-Liste

source_name

Name of the existing function

target_name

Name of the new function to copy the definition to

Rückgabewerte

Gibt bei Erfolg true zurück. Bei einem Fehler wird false zurückgegeben.

Beispiele

Beispiel #1 A runkit7_function_copy() example

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

In a function
In a function

Siehe auch

add a note

User Contributed Notes

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