Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(PHP を使用して) 別のマジック オブジェクトを拡張するマジック オブジェクトを作成できるかどうかを知りたいです。
あなたが何を求めているのかよくわかりません...親クラスの魔法のメソッドを明示的に呼び出したいですか? その場合は、クラスのparent参照を使用できます。
parent
class Object extends dbObj{ // ... // this is what i'm assuming you're looking for: public function __call($method, $variables){ return parent::__call($method, $variables); } }