待整理(文章)

[PHP基础学习笔记] 面向对象编程:__call()实现跨类调用方法

字号+ 作者:hanyufeng 来源: 2018-01-12 00:46:00 我要评论( ) 阅读:

__call()方法实现跨类调用...

__call()方法是PHP的魔术方法之一,当对象调用一个不存在或限制访问的类方法时,程序会自动调用__call()方法。

在__call()方法中使用call_user_func_array()函数调用其它类的方法,就实现了方法的跨类调用。


例如:

class User{
    private $name;
    private $grade;
    private $class;

    //__get()方法获取属性值
    public function __get($propertyName){
        return $this->$propertyName;
    }

    //__set()方法设置属性值
    public function __set($propertyName,$value){
        $this->$propertyName = $value;
    }
}

class Student extends User
{
    protected $score;//定义子类的变量

    public function __call($name, $arguments)
    {
        //跨类调用方法
        return call_user_func_array([(new Teacher),$name],$arguments);
    }
}

class Teacher extends User
{
    protected $phoneNum;//手机号码
    protected $studentCount;//学生数
    protected static $classCount;//班级数

    public function __construct()
    {
        $this->studentCount = 60;
        self::$classCount = 3;
    }

    public function getStudentCount(){
        return $this->studentCount;
    }

    public static function getClassCount(){
        return self::$classCount; //静态方法只能调用静态对象
    }
}

$stu = new Student();
echo $stu->getStudentCount();
echo '<br>';
echo $stu->getClassCount();

运行效果:

60
3

$stu 对象跨类调用了 Teacher类的2个方法,包括1个静态方法。

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • [PHP基础学习笔记] 面向对象编程:属性访问方法_get()、_set()

    [PHP基础学习笔记] 面向...