$car = new Car();
echo $car->name;
//
$car->name = '奥迪A6'; //设置对象的属性值
echo $car->getName(); //调用对象的方法 输出对象的名字
因为你要先设置,然后才能调用