PHP拦截器的使用(转)

PHP有如下几个拦截器:

1、__get($property)
功能:访问未定义的属性是被调用
2、__set($property, $value)
功能:给未定义的属性设置值时被调用
3、__isset($property)
功能:对未定义的属性调用isset()时被调用
4、__unset($property)
功能:对未定义的属性调用unset()时被调用
5、__call($method, $arg_array)
功能:调用未定义的方法时被调用

拦截器,顾名思义,它就“拦截”未定义的属性和方法,有点类似__autoload和__construct等方法,应用案例如下(摘自网络):

    1. // 若访问一个未定义的属性,则将调用get{$property}对应的方法
    2. function __get($property){
    3. $method ="get{$property}";
    4. if(method_exists($this, $method)){
    5. return $this->$method();
    6. }
    7. }
    8. // 若给一个未定义的属性设置值,则将调用set{$property}对应的方法
    9. function __set($property, $value){
    10. $method ="set{$property}";
    11. if(method_exists($this, $method)){
    12. return $this->$method($value);
    13. }
    14. }
    15. // 若用户对未定义的属性调用isset方法,
    16. function __isset($property){
    17. $method ="isset{$property}";
    18. if(method_exists($this, $method)){
    19. return $this->$method();
    20. }
    21. }
    22. // 若用户对未定义的属性调用unset方法,
    23. // 则认为调用对应的unset{$property}方法
    24. function __unset($property){
    25. $method ="unset{$property}";
    26. if(method_exists($this, $method)){
    27. return $this->$method();
    28. }
    29. }
    30. function __call($method, $arg_array){
    31. if(substr($method,0,3)=="get"){
    32. $property = substr($method,3);
    33. $property = strtolower(substr($property,0,1)).substr($property,1);
    34. return $this->$property;
    35. }
    36. }
上一篇:二进制安装Kubernetes/k8s


下一篇:在pod中使用脚本 curl 访问 kubernates的apiserver接口