类和对象这点看不懂
<?php
//定义一个类
class Car {
var $name = '汽车1111';
function getName() {
echo $this->name;
return $this->name;
}
}
//实例化一个car对象
$car = new Car();
$car->getName();
执行完以后结果是:汽车1111,看是我看不懂的是为什么这样写
echo $this->name;
return $this->name;
而不是
echo $this->$name;
return $this->$name;
上面等一的时候,name是有$符号的,为什么引用的时候就没了,而且执行完以后,结果还正确,懵了