この記事の内容は、PHP が _call を使用して多重継承を実装する方法 (コード例) に関するもので、一定の参考値があります。必要な友人は参照してください。お役に立てば幸いです。
この記事では、コードの再利用を実現するための _call の使用方法を簡単に紹介します。
_call: PHP のマジックメソッド クラスに存在しないメソッドを呼び出すと、自動的に _call が呼び出されます
サンプルコード:
class One{ function method_1(){ echo '11<br/>'; } function method_2(){ echo '22<br/>'; } } class Two{ function method_3(){ echo '33<br/>'; } function method_4(){ echo '44<br/>'; } } class StaticDemo{ protected $Class = array(); public function __construct(array $class = array()){ $this->Class = $class; } public function __call($name, $arguments) { // TODO: Implement __call() method. foreach ($this->Class as $v){ if (is_callable(array($v, $name))) { //call_user_func_array在上篇文章中已作出理解 return call_user_func_array(array($v, $name), $arguments); } } return call_user_func_array(array($this, $name), $arguments); } } $obj = new StaticDemo(array(new One(), new Two())); $obj->method_1(); $obj->method_3();
実行結果: 11,33
以上が_call を使用して PHP で多重継承を実装する方法 (コード例)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。