当前位置:Gxlcms > PHP教程 > php魔术方法深度理解php魔术phpphp中的魔术方法

php魔术方法深度理解php魔术phpphp中的魔术方法

时间:2021-07-01 10:21:17 帮助过:6人阅读

??摘要:在trace yii框架源码的时候,遇到__set()魔术方法的使用,有些疑惑,所以写了demo来测试,果然发现了玄机,整理如下。

1. 先来看看书本上讲魔术方法__set()是怎么用的

??使用__set()魔术方法的目的是:在对象外部 为私有属性赋值,不能获取私有属性的值。
??函数原型:

void __set(string name,mixed value)

写个demo:

classCModule {private$_components = '';

    publicfunction__set($name,$value){$this->$name = $value;
    }

    publicfunctionechoPrivate(){echo$this->_components;
    }
}

$config = array(
    '_components'=>'request'
);
$module = new CModule();
$module->_components = 'request';
$module->echoPrivate();
//打印结果是//request

<未完待续(太瞌睡了)>

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了php 魔术方法 深度理解,包括了PHP 魔术方法方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行