这里哪里有错误 php 内容显示不出来
classPerson{public$name;publicfunctionJohnsmith(){$this->name="john";}publicfunctionG...
class Person{
public $name ;
public function Johnsmith(){
$this->name="john";
}
public function Getname(){
echo $this->name;
}
}
$h=new Person();
$h->Getname();
?> 展开
public $name ;
public function Johnsmith(){
$this->name="john";
}
public function Getname(){
echo $this->name;
}
}
$h=new Person();
$h->Getname();
?> 展开
1个回答
展开全部
更多追问追答
追问
你好,请具体告诉我哪里错了,为什么是错误的
追答
您出现空白的原因是因为您调用了Getname方法,Getname方法里只有一段“输出”的功能,并没有“设置名字”的功能。由于类的name字段只做了声明没有赋值,所以为空。至于Johnsmith方法,您也只是定义了,并没有调用。这下解释您明白了吗?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询