为什么我这个代码输出不了,有没有大佬教教
<?php
class Car {
function _construct() {
print "构造函数被调用 \n";
}
function _destruct() {
print "析构函数被调用 \n";
}
}
$car = new Car();
?>
<?php
class Car {
function _construct() {
print "构造函数被调用 \n";
}
function _destruct() {
print "析构函数被调用 \n";
}
}
$car = new Car();
?>
2021-08-09
举报