課程
/后端開發(fā)
/PHP
/PHP進階篇
?Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /543/zjM/index.php on line 17
2015-06-06
源自:PHP進階篇 2-7
正在回答
我試的沒錯,你再試試
<?php class?Car?{ ????private?$speed?=?0; ???? ????public?function?getSpeed()?{ ????????return?$this->speed; ????} ???? ????protected?function?speedUp()?{ ????????$this->speed?+=?10; ????} ???? ????//增加start方法,使他能夠調(diào)用受保護的方法speedUp實現(xiàn)加速10 ????public?function?start(){ ????????$this->speedUp(); ????} } $car?=?new?Car(); $car->start(); echo?$car->getSpeed();
一般這種情況都是分號!
舉報
輕松學(xué)習(xí)PHP中級課程,進行全面了解,用PHP快速開發(fā)網(wǎng)站程序
2 回答一直提示運行成功,輸出錯誤
2 回答為什么提示運行成功,輸出錯誤
1 回答輸出顯示未換行,而且一直提交不了
2 回答php中二維數(shù)組的輸出出現(xiàn)了問題,提示:Notice: Array to string conversion
2 回答為什么我顯示運行成功卻輸入錯誤,id沒辦法輸出來
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2015-06-06
我試的沒錯,你再試試
2015-06-06
一般這種情況都是分號!