<?php
class Car {
//增加构造函数与析构函数
function __constuct(){
print "构造函数被调用 \n";
}
function __destruct(){
print "析构函数被调用 \n";
$car = new Car();
unset($car);
第四行 construct 少打了r