Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:以后不要这样集中提交了
<??php
class Demo{
}
<?php
class Demo{
public function name($name)
{
echo '我的名字是:'.$name;
}
}
<?php
class Demo{
public $sex = '男';
public function name($name)
{
echo '我的名字是:'.$name;
}
}
class Demo{
public $sex = '男';
public function name($name)
{
echo '我的名字是:'.$name;
}
}
$a = new Demo();
//调用类方法
$a->name('张三');
//调用类成员
echo '我的性别是:'.$a->$sex;
class Demo{
public $name;
public $age;
public $sex;
//构造方法,在实例化类的时候调用
public function __construct($name,$age,$sex)
{
$this->name = $name;
$this->age = $age;
$this->sex = $sex;
}
public function getInfo()
{
echo '我的名字是:'.$this->name . ',我今年' . $this->age . '岁,我是' . $this->sex '生';
}
}
//有构造方法,必须在实例化的时候根据构造方法的形参传值
$a = new Demo('张三',18,'男');
//调用类方法
$a->getInfo();
namespace test;
class Demo{
public $name;
public $age;
public $sex;
//构造方法,在实例化类的时候调用
public function __construct($name,$age,$sex)
{
$this->name = $name;
$this->age = $age;
$this->sex = $sex;
}
public function getInfo()
{
echo '我的名字是:'.$this->name . ',我今年' . $this->age . '岁,我是' . $this->sex '生';
}
}
//有构造方法,必须在实例化的时候根据构造方法的形参传值
$a = new Demo('张三',18,'男');
//调用类方法
$a->getInfo();