php构造方法对成员变量赋值 function__construct

我初学者有很多不懂,下面是代码。我感觉对的但是dw里说function__construct有错误。求大神帮忙看看!顺便指出下问题!/*设计学校学生教室教师*//*人数D... 我初学者有很多不懂,下面是代码。我感觉对的 但是dw里说
function__construct有错误。求大神帮忙看看!顺便指出下问题!
/*设计 学校 学生 教室 教师*/
/*人数 DZ 20 50 2 */

<?php
class School{
public $school_name;
public $school_student;
public $school_room;
public $school_teacher;
function__construct($name,$student,$room,$teacher){
$this->$school_name=$name;
$this->$school_student=$student;
$this->$school_room=$room;
$this->$school_teacher=$teacher;
}
function show(){
echo "!@#$%^&*";
}
}
class People extends School{
public $teachername;
function__construct($tname,$studentconsts){
$this->$teachername=$tname;
$this->$school_student=$studentconsts;
}
function show(){
return "今天上课".$teachername."讲课,学生".$studentconsts."人";}
}
class Tongji extends School{
function show(){
return "学校名:".$this->$school_name."学生数:".$this->$school_student."教室数:".$this->$school_room."教师数:".$this->$school_teacher;
}
}

$a=new People("周周周",20);
$b=new School("DZ",20,50,2);
echo $a->show()."<br>";
echo $b->show();
?>
展开
 我来答
百度网友598742b
推荐于2018-02-27 · TA获得超过1627个赞
知道小有建树答主
回答量:2655
采纳率:100%
帮助的人:1266万
展开全部
function __construct

function 是系统关键词,表示定义一个方法,后面加空格然后根方法名( __construct
是方法名)。你的未加空格

__construct 是系统内置的,叫魔术方法,每次实例化类是会自动执行此方法。
还有就是调用类的成员变量不需要在变量前面加 $ 比如:
$this->school_name = $name; 正确
$this->$school_name = $name; 错误

<?php
class School {
public $school_name;
public $school_student;
public $school_room;
public $school_teacher;
function __construct($name, $student, $room, $teacher) {
$this->school_name = $name;
$this->school_student = $student;
$this->school_room = $room;
$this->school_teacher = $teacher;
}
function show() {
echo "!@#$%^&*";
}
}

class People extends School {
public $teachername;
function __construct($tname, $studentconsts) {
$this->teachername = $tname;
$this->school_student = $studentconsts;
}

function show() {
return "今天上课" . $this->teachername . "讲课,学生" . $this->school_student . "人";
}
}

class Tongji extends School {
function show() {
return "学校名:" . $this->school_name . "学生数:" . $this->school_student . "教室数:" . $this->school_room . "教师数:" . $this->school_teacher;
}
}

$a = new People ( "周周周", 20 );
$b = new School ( "DZ", 20, 50, 2 );
echo $a->show () . "<br>";
echo $b->show ();

?>
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Phper
2011-01-13 · TA获得超过1210个赞
知道小有建树答主
回答量:625
采纳率:0%
帮助的人:682万
展开全部
function__construct 改为 function __construct

function 与 __construct 之间有空格的

$this->$school_name 改为 $this->school_name
其它类同
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式