时间:2021-07-01 10:21:17 帮助过:3人阅读
$pig=new animal();
$pig->setInfo('猪');//是这行错了,你的分号为全角的分号。
$name=$pig->getInfo();//编译器提示错误
echo $name;
/**
另外:以后发代码,格式化了吧
*/
class person{
private $name;
function setname($name){
return $this->name = $name;
}
function getname(){
return $this->name;
}
}
$p = new person();
$p->setname('lizhi');
echo $p->getname();
?>
class animal{
public $name="";
public $color="";
public $age="";
function getInfo(){
return $this->name;
}
function setInfo($name){
$this->name = $name; //这里应该是赋值,想必你复制错了
}
}
$pig=new animal();
$pig->setInfo('猪'); //这里原来是全角的;
$name=$pig->getInfo();
echo $name;