//
$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 — Bir yöntem ihraç eder
Bu işlevin kullanımı PHP 7.4.0 itibariyle ÖNERİLMEMEKTE olup PHP 8.0.0'da tamamen KALDIRILMIŞTIR. Bu işleve kesinlikle güvenilmemelidir.
ReflectionMethod ihraç eder.
sınıf
Sınıf ismi.
isim
Yöntem ismi.
ihracet
true
belirtilirse yansıtmak yerine
ihrac eder. false
olursa (öntanımlıdır) tersini yapar.
true
belirtilirse bir dizge yoksa null
döner.
//
$instance = new ReflectionClass($namespace);
$method = $instance->getMethod($method_name);
// need to prove
$method->export(
$method->class, // necessary ?
$method->name // necessary ?
);