我嘗試做類樹,其中樹中的每個類檢查模板的自己的目錄並使用它,但是當我在繼承的類中調用函數,然後調用父類。我該怎麼做 ?PHP:繼承問題
我的例子下面輸出在代碼:
d
Ç
B/1.phtml
但我需要d/1.phtml
<?php
class A {
private $templates_dir = 'a';
}
class B extends A {
private $templates_dir = 'b';
public function templates_dir()
{
return $this->templates_dir;
}
public function check_template($tpl)
{
$dir = $this->templates_dir();
$file = $dir. '/'. $tpl;
echo (get_class($this)). "\r\n";
echo (get_parent_class($this)). "\r\n";
echo $file . "\r\n";
// idea - if (!file_exists($file)) return parent::check_template($file);
// method call each class while template will be found
// how do it?
}
}
class C extends B {
private $templates_dir = 'c';
}
class D extends C {
private $templates_dir = 'd';
}
$obj = new D();
$obj->check_template('1.phtml');
與所有那些你在痛苦的世界進入的子類。 – Federkun