1
class bm_main {
public $db;
public function __construct(){
$this->db = new db();
}
}
class bm extends bm_main{
public function __construct($id){
$this->db = parent::$db;
$this->db->save($id);
}
}
如何訪問從父類的$ db對象,所以我可以在孩子一個PHP兒童類訪問對象
謝謝,但我不能這樣做,因爲父構造函數調用其他方法,我不會調用任何其他的建議 – Stasa 2011-02-18 11:10:37