慕九州2484975
2021-08-09 09:00
<?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();
?>
__construct() 和 __destruct() 前面是两个下划线;
PHP进阶篇
181835 学习 · 2577 问题
相似问题