<?php
class Car {
//增加构造函数与析构函数
function __construct(){
print "构造函数被调用 \n";
}
function __destruct(){
print "析构函数被调用 \n";
}
}
$car = new Car();
class Car {
//增加构造函数与析构函数
function __construct(){
print "构造函数被调用 \n";
}
function __destruct(){
print "析构函数被调用 \n";
}
}
$car = new Car();
2021-03-04