Ben burada aptal oluyorum sanmıyorum.
class Parent {
function load($function) {
if (method_exists(__CLASS__, $function)) {
// Load Function
}
}
}
Class Child extends Parent {
function foo() {
}
}
$this->Child->load('foo');
Sorun __CLASS__
'Veli' dönen olmasıdır. Onu nasıl Çocuk geri alabilirim?