发布时间:2015-05-27 19:23:59作者:知识屋
class Person{ private $name; private $age; private $sex; function __construct($name="",$age=20,$sex="male"){ $this->name=$name; $this->age=$age; $this->sex=$sex; } function getPro($name){ return $this->$name; } function setAge($age){ if($age>100||$age<0){ return; } $this->age=$age; } function getAge(){ if($this->age<30){ return $this->age; }elseif($this->age<40){ return $this->age-5; }elseif($this->age<50){ return $this->age-10; }else{ return $this->age-15; } } function say(){ echo "我的名字是:".$this->name.",年龄是:".$this->age.",性别是:".$this->sex.'<br>'; } function __destruct(){ echo $this->name.",再见"."<br>"; } } $p1=new Person("rayhooo",26,"male"); $p1->say(); echo $p1->getPro("name").'<br>'; $p1->setAge(45); echo $p1->getAge().'<br>';
如何对PHP文件进行加密方法 PHP实现加密的几种方式介绍
php生成圆角图片的方法 电脑中php怎么生成圆角图片教程
用PHP构建一个留言本方法步骤 php怎么实现留言板功能
php中三元运算符用法 php中的三元运算符使用说明
php文件如何怎么打开方式介绍 php文件用什么打开方法
PHP怎么插入数据库方法步骤 php编程怎么导入数据库教程
如何安装PHPstorm并配置方法教程 phpstorm安装后要进行哪些配置
PHP 获取远程文件大小的3种解决方法 如何用PHP获取远程大文件的大小
20个实用PHP实例代码 php接口开发实例代码详细介绍
如何架设PHP服务器方法步骤 怎么搭建php服务器简单教程