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 file_get_contents 函数超时的几种解决方法
-
PHP使用file_get_content设置头信息的方法
-
PHP中ini_set和ini_get函数的用法小结
-
php中的路径问题与set_include_path使用介绍
-
你可能不知道PHP get_meta_tags()函数
-
php中curl和file_get_content的区别
-
php中用socket模拟http中post或者get提交数据的示例代码
-
PHP通过内置函数memory_get_usage()获取内存使用情况
-
file_get_contents("php://input", "r")实例介绍
-
php中curl、fsocket、file_get_content三个函数的使用比较