<?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;
?>
相关文章
- 03-28[('type','=','get_user_ht_type()')]">openerp学习笔记 domain 增加扩展支持,例如支持
[('type','=','get_user_ht_type()')] - 03-28Python实战之set学习笔记及简单练习
- 03-28robotframework学习笔记六:Set Variable If 关键字的使用
- 03-28ES6学习---Class中的get和set
- 03-28Angular 学习笔记 (Angular 12 get started)
- 03-28Python学习笔记 - dict和set
- 03-28Hive学习笔记:列转行之collect_list/collect_set/concat_ws
- 03-28Ansible 下载模块get_url、解压缩模块unarchive(学习笔记十五)
- 03-28小程序和PHP学习笔记 ----- 不定期更新。
- 03-28Python学习笔记:类别设置之category与set_categories