• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP拦截器的使用(转)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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.  
    9. // 若给一个未定义的属性设置值,则将调用set{$property}对应的方法
    10. function __set($property, $value){
    11. $method ="set{$property}";
    12. if(method_exists($this, $method)){
    13. return $this->$method($value);
    14. }
    15. }
    16. // 若用户对未定义的属性调用isset方法,
    17. function __isset($property){
    18. $method ="isset{$property}";
    19. if(method_exists($this, $method)){
    20. return $this->$method();
    21. }
    22. }
    23. // 若用户对未定义的属性调用unset方法,
    24. // 则认为调用对应的unset{$property}方法
    25. function __unset($property){
    26. $method ="unset{$property}";
    27. if(method_exists($this, $method)){
    28. return $this->$method();
    29. }
    30. }
    31. function __call($method, $arg_array){
    32. if(substr($method,0,3)=="get"){
    33. $property = substr($method,3);
    34. $property = strtolower(substr($property,0,1)).substr($property,1);
    35. return $this->$property;
    36. }
    37. }

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
php的初步了解发布时间:2022-07-10
下一篇:
php多线程即时通讯发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap