本文实例讲述了php 多继承的几种常见实现方法。分享给大家供大家参考,具体如下:
class parent1 { function method1() {} function method2() {}}class parent2 { function method3() {} function method4() {}}class child { protected $_parents晕厥的预防和现场处理 = array(); public function child(array $parents=array()) { $this->_parents = $parents; } public function __call($method, $args) { // 从“父类"中查网络舆情分析找方法 foreach ($this->_parents as $p) { if (is_callable(array($p, $method))) { return call_ur_func_array(array($p, $method), $args); } } // 恢复默认的行为,会引发一个方法不存在的致命错误 return call_ur_func_array(array($this, $method), $args); }}$obj = new child(array(new parent1(), new parent2()));print_r( array($obj) );die;$obj->method1();$obj->metho高考名言励志警句d3();
运行结果:
array
(
[0] => child object
(
[_parents:protected] => array
(
[0] => parent1 object
(
)[1] => parent2 object
(
))
)
)
interface testa{ function echostr();}interface testb extends testa{ 记性 function dancing($name);}class testc implements testb{ function echostr(珍惜粮食的古诗){ echo "接口继承,要实现所有相关抽象方法!"; echo "<br>"; } function dancing($name){ echo $name."正在跳舞!"; }}$demo=new testc();$demo->echostr();$demo->dancing("模特");
运行结果:
接口继承,要实现所有相关抽象方法!
模特正在跳舞!
本文发布于:2023-04-08 05:37:41,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/fad90220e4ff89a79e64456e895cabe9.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php 多继承的几种常见实现方法示例.doc
本文 PDF 下载地址:php 多继承的几种常见实现方法示例.pdf
留言与评论(共有 0 条评论) |