• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHP的拦截器实例分析_PHP

php 搞代码 3年前 (2022-01-25) 31次浏览 已收录 0个评论

本文实例讲述了PHP的拦截器用法。分享给大家供大家参考。具体如下:

PHP提供了几个拦截器,用于在访问未定义的方法和属性时被调用,如下所示:

1、__get($property)
功能:访问未定义的属性是被调用

2、__set($property, $value)
功能:给未定义的属性设置值时被调用

3、__isset($property)
功能:对未定义的属性调用isset()时被调用

4、__unset($property)
功能:对未定义的属性调用unset()时被调用

5、__call($method, $arg_array)
功能:调用未定义的方法时被调用

下面将通过一个小程序来说明这些拦截器的用途:

class intercept_demo{<br />    private $xingming = "";<br />    private $age = 10;<br />   <br />    // 若访问一个未定义的属性,则将调用get{$property}对应的方法<br />    function __get($property){<br />        $method = "get{$property}";<br />        if (method_exists($this, $method)){<br />            return $this->$method();<br />        }<br />    }

// 若给一个未定义的属性设置值,则将调用set{$property}对应的方法
function __set($property, $value){
$method = “set{$property}”;
if (method_exists($this, $method)){
return $this->$method($value);
}
}

// 若用户对未定义的属性调用isset方法,
function __isset($property){
$method = “isset{$property}”;
if (method_exists($this, $method)){
return $this->$method();
}
}

// 若用户对未定义的属性调用unset方法,
// 则认为调用对应的unset{$property}方法
function __unset($property){
$method = “unset{$property}”;
if (method_exists($this, $method)){
return $this->$method();
}
}

function __call($method, $arg_array){
if (substr($method,0,3)==”get”){
$property = substr($method,3);
$property = strtolower(substr($property,0,1)).substr($property,1);
return $this->$property;
}
}

function testIsset(){
return isset($this->Name);
}

function getName(){
return $this->xingming;
本文来源gaodai$ma#com搞$$代**码)网8搞代gaodaima码 }

function setName($value){
$this->xingming = $value;
}

function issetName(){
return !is_null($this->xingming);
}

function unsetName(){
$this->xingming = NULL;
}
}

$intercept = new intercept_demo();
echo “设置属性Name为Li”;
$intercept->Name = “Li”;
echo “\$intercept->Name={$intercept->Name}”;
echo “isset(Name)={$intercept->testIsset()}”;
echo “”;
echo “清空属性Name值”;
unset($intercept->Name);
echo “\$intercept->Name={$intercept->Name}”;
echo “”;
echo “调用未定义的getAge函数”;
echo “age={$intercept->getAge()}”;

希望本文所述对大家的PHP程序设计有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP的拦截器实例分析_PHP

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址