Correcting teacher:查无此人
Correction status:qualified
Teacher's comments:完成的不错,继续加油。作业最好写点自己看法和总结。
<?php
// 类是命名空间
namespace user;
// 创建一个类
class lists {
//成员
public $name = '李四';
public $age = 36;
//方法
function getPeople() {
$f = new self();
return '姓名:'.$f->name .'<br>'.'年龄:'.$f->age;
}
}
// 实例化类
$people = new lists();
// 输出值
echo $people->getPeople();
// 创建一个类
class lists {
//成员
// 属性
public $name;
public $age;
// 构造方法
public function __construct($name, $age){
$this->name = $name;
$this->age = $age;
}
//方法
function getPeople() {
return '姓名:'.$this->name .'<br>'.'年龄:'.$this->age;
}
}
// 实例化类
$people = new lists('李四',36);
// 输出值
echo $people->getPeople();