假設我有兩個文件,每個文件都有一個類。在父類中如何獲取子類的文件名?獲取擴展類的文件名
文件2(子類):
class B extends A{
}
文件1:
class A{
final protected function __construct(){
// here I want to get the filename where class B is,
// or whatever class is the child
}
}
類是如何用該受保護的構造函數實例化的? – Phil
你想要父類,神奇地知道一個單一的任意孩子類的位置,當它構造時?這不是一件容易的事情,並沒有任何目的。你究竟想要做什麼?有可能有更好的方法去實現您的實際最終目標。 –