課程
/后端開(kāi)發(fā)
/PHP
/PHP進(jìn)階篇
構(gòu)造函數(shù)和析構(gòu)函數(shù)那一節(jié),任務(wù)里為什么代碼老是顯示析構(gòu)函數(shù)跟構(gòu)造函數(shù)未建立?求個(gè)完整代碼
2015-04-15
源自:PHP進(jìn)階篇
正在回答
<?php
class Car {
? ? //增加構(gòu)造函數(shù)與析構(gòu)函數(shù)
? ? function __construct() {
? ? ? ?print "構(gòu)造函數(shù)被調(diào)用 \n";
? ?}
? ? function __destruct() {
? ? ? ? print "析構(gòu)函數(shù)被調(diào)用 \n";
? ? }
}
$car = new Car();
unset($car);
謝謝!我發(fā)現(xiàn)自己的問(wèn)題了....原來(lái)是這個(gè)構(gòu)造函數(shù)和析構(gòu)函數(shù)之前是兩個(gè)下劃線....我用的是一個(gè)
舉報(bào)
輕松學(xué)習(xí)PHP中級(jí)課程,進(jìn)行全面了解,用PHP快速開(kāi)發(fā)網(wǎng)站程序
1 回答構(gòu)造函數(shù)和析構(gòu)函數(shù)
2 回答構(gòu)造函數(shù)與析構(gòu)造函數(shù)
3 回答構(gòu)造函數(shù)和折構(gòu)函數(shù)
4 回答構(gòu)造函數(shù)和析構(gòu)函數(shù)的應(yīng)用有哪些
1 回答PHP中的構(gòu)造函數(shù)和析構(gòu)函數(shù)是否像C++一樣,在未定義構(gòu)造函數(shù)和析構(gòu)函數(shù)時(shí),系統(tǒng)會(huì)自動(dòng)定義?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2015-04-15
<?php
class Car {
? ? //增加構(gòu)造函數(shù)與析構(gòu)函數(shù)
? ? function __construct() {
? ? ? ?print "構(gòu)造函數(shù)被調(diào)用 \n";
? ?}
? ? function __destruct() {
? ? ? ? print "析構(gòu)函數(shù)被調(diào)用 \n";
? ? }
}
$car = new Car();
unset($car);
2015-04-15
謝謝!我發(fā)現(xiàn)自己的問(wèn)題了....原來(lái)是這個(gè)構(gòu)造函數(shù)和析構(gòu)函數(shù)之前是兩個(gè)下劃線....我用的是一個(gè)