码迷,mamicode.com
首页 > Web开发 > 详细

php面向对象继承的初步使用

时间:2017-07-13 20:41:10      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:int   extend   class   tor   struct   nbsp   对象   ons   bsp   

<?php
/**
* Created by PhpStorm.
* User: fu
* Date: 2017/7/13
* Time: 13:34
*/

class Person{

public $name;
public $age;

public function __construct($name, $age)
{
$this->name = $name;
$this->age = $age;
}

public function desc(){

}
public function introduce(){
echo ‘姓名:‘.$this->name.‘,年龄:‘.$this->age;
$this->desc();
}
}

class Man extends Person{

public function desc(){
echo ‘,男性有胡子<br>‘;
}

}
class Woman extends Person{

public function desc(){
echo ‘,女生喜欢购物<br>‘;
}
}

$person = new Man(‘李四‘, 25);
$person->introduce();

$person = new Woman(‘丽丽‘, 28);
$person->introduce();

 

php面向对象继承的初步使用

标签:int   extend   class   tor   struct   nbsp   对象   ons   bsp   

原文地址:http://www.cnblogs.com/zxy945/p/7162053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!