标签:style blog color io 使用 sp div on log
<?php Class Person{ private $n1; private $n2; private $n3; //使用__set方法来管理所有的属性 public function __set($pro_name,$pro_val) { $this->pro_name=$pro_val; } //使用__get可以获取所有的属性值 public function __get($pro_name) { if(isset($pro_name)) { return $this->pro_name; }else { return null; } } } $p1=new Person(); $p1->n1="hello world"; echo $p1->n1; ?>
标签:style blog color io 使用 sp div on log
原文地址:http://www.cnblogs.com/sumg/p/4052829.html