//
$instance = new ReflectionClass($namespace);
$method = $instance->getMethod($method_name);
// need to prove
$method->export(
$method->class, // necessary ?
$method->name // necessary ?
);
(PHP 5, PHP 7)
ReflectionMethod::export — Export a reflection method
Diese Funktion ist seit PHP 7.4.0 als DEPRECATED (veraltet) markiert und wurde in PHP 8.0.0 ENTFERNT. Von der Verwendung dieser Funktion wird dringend abgeraten.
Exports a ReflectionMethod.
class
The class name.
name
The name of the method.
return
Wird dies auf true
gesetzt, so wird der Export
zurückgegeben anstelle ihn auszugeben. Wird dies auf false
gesetzt (der Standardwert), wird
das Gegenteil passieren.
Falls der Parameter
return
auf true
gesetzt ist,
so wird der Export als ein String
zurückgegeben, andernfalls wird null
zurückgegeben.
//
$instance = new ReflectionClass($namespace);
$method = $instance->getMethod($method_name);
// need to prove
$method->export(
$method->class, // necessary ?
$method->name // necessary ?
);