php拦截器请求地址,PHP的拦截器实例分析

class intercept_demo{

private $xingming = "";

private $age = 10;

// 若访问一个未定义的属性,则将调用get{$property}对应的方法

function __get($property){

$method = "get{$property}";

if (method_exists($this, $method)){

return $this->$method();

}

}

// 若给一个未定义的属性设置值,则将调用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;

}

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()}";

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值