PHP中的拦截器(魔术方法)

__get($property) 访问未定义的属性时被调用
__set($property,$value) 给未定义的属性赋值时被调用
__isset($property) 对未定义的属性调用isset()时被调用
__unset($property) 对未定义的属性调用unset()时被调用
__call($method,$arg_array) 调用未定义的方法时被调用


__get()和__set()方法用于处理类(或其父类)中未声明的属性
-------------------__get()----------------------
class Person {
    function __get($property){
        $method = "get{$property}";
        if(method_exists($this,$method)){
            return $this->$method();
        }
    }

    public function getName(){
        return "Bob";
    }
}

$p = new Person();
echo $p->name; //输出Bob

----------------------__set()---------------------
class Person {
    private $_name;
    private $_age;

    function __set($property,$value){
        $method = "set{$property}";
        if(method_exists($this,$method)){
        return $this->$method($value);
        }
    }

    function setName($name){
        $this->_name = $name;
        if(!is_null($name)){
            $this->_name = strtoupper($this->_name);
        }
       echo $this->_name;
    }
}

$p = new Person();
$p->name = 'bob'; //$p->_name为BOB;

__isset()和__get相对应,当在一个未定义的属性上调用isset()时,__isset被调用
---------------------__isset()-------------------------
function __isset($property){
    $method = "get{$property}";
    return (method_exists($this,$method));
}

__unset()和__set相对应,当unset()在一个未定义的属性上被调用时,__unset()会被调用,并以该属性的名称作为参数,然后可以根据属性名进行必要的处理。
----------------------__unset()------------------------
function __unset($property){
    $method = "set{$property}";
    if(method_exists($this,$method)){
        $this->$method(null);
    }
}

__call()方法可能是最有用的拦截器方法,当程序中要调用类中未定义的方法时,__call()会被调用。__call()带有两参数,一个是方法名,一个是传递给要调用方法的所有参数(数组)。__call()方法返回的任何值都会返回给调用它的地方。
---------------------__call()--------------------------
class PersonWriter {
    function writeName(Person $p){
        echo $p->getName() . "\n";
    }

    function writeAge(Person $p){
        echo $p->getAge() . "\n";
    }
}

class Person {
    private $writer;

    function __construct(PersonWriter $writer){
        $this->writer = $writer;
    }
    function __call($methodName,$args){
    if(method_exists($this->writer,$methodName)){
        return $this->writer->$methodName($this);
    }
}

    function getName(){
        return 'Bob';
    }
    function getAge(){
        return 44;
    }
}

$person = new Person(new PersonWriter);
$person->writeName(); //输出 Bob

上面这个例子是通过__call()方法去实现委托。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值