1. 首页
  2. 数据库
  3. 其它
  4. php类的定义与继承用法实例

php类的定义与继承用法实例

上传者: 2020-12-31 07:16:38上传 PDF文件 32.41KB 热度 12次
本文实例讲述了php类的定义与继承用法。分享给大家供大家参考。具体如下: <?php /* * class */ class people { public $name; public $age; function __construct($namec,$agec) { $this->name = $namec; $this->age = $agec; } protected function getmessage() { return "姓名:".$this->name.""."年龄:".$this->age; } f
用户评论