php _get() _set() _construct()
function __construct($name, $sex, $age, $school)
??? ??? {
??? ??? ??? $this->name=$name;
??? ??? ??? $this->sex=$sex;
??? ??? ??? $this->age=$age;
??? ??? ??? $this->school=$school;
}
?
?
?
function __get($property_name)
??{?
??? //echo "在直接获取私有属性值的时候,自动调用了这个__get()方法
";
????if(isset($this->$property_name)) {
????return($this->$property_name);
??? }else {
????return(NULL);
???}
??}
??//__set()方法用来设置私有属性
??function __set($property_name, $value)
??{
??//?echo "在直接设置私有属性值的时候,自动调用了这个__set()方法为私有属性赋值
";
???$this->$property_name = $value;
??} ?
?
?
function setAge($age)? //为外部提供一个公有设置年龄的方法
??? {
??? ??? if($age130) //在给属性赋值的时候,为了避免非法值设置给属性
??? ??? ??? return;
??? ??? $this->age=$age;
}
function getAge() ??? //为外部提供一个公有获取年龄的方法
{
??? return($this->age);
}
?
相关文章
相关视频
推荐阅读
-
PHP-CGI 进程 CPU 100% 与 file_get_contents 函数的关系_PHP教程
-
Php幻术函数学习与应用 _construct() _destruct() _get()等
-
PHP中使用socket方式GET、POST数据实例教程
-
基于curl数据采集之单页面并行采集函数get_htmls的使用_PHP
-
php中运用http调用的GET和POST方法示例_PHP
-
PHP中使用cURL实现Get和Post请求的方法
-
php函数之func_get_args()、func_get_arg()与func_num_args()_PHP教程
-
PHP file_get_contents 结尾出现不可预知字符
-
PHP中使用socket方式GET、POST数据实例_php实例
-
Php $_POST、$_GET防注入程序