課程
/后端開發(fā)
/PHP
/大話PHP設(shè)計(jì)模式
確實(shí)有問題首先IDatabase接口應(yīng)該單獨(dú)寫一個(gè)文件,比如放在IMooc目錄下然后在MySQL.php 中應(yīng)該 use IMooc\IDatabase;
2015-04-11
源自:大話PHP設(shè)計(jì)模式 6-1
正在回答
是的,這樣就不會(huì)出現(xiàn)Fatal error: Interface 'IMooc\IDatabase' not found in的錯(cuò)誤了。
沒錯(cuò),就是這樣。以下就是我的代碼
<?php
namespace imooc;
interface Idatabase
{
function connect($host,$user,$pass,$dbname);
function query($sql);
function close();
}
舉報(bào)
幫助PHPer具備使用設(shè)計(jì)模式解決工程中復(fù)雜邏輯的能力
2 回答那個(gè)IDatabase接口有問題
6 回答Interface 'Server\IDatabase' not found in
1 回答請(qǐng)問下phpstorm的問題
1 回答路徑的問題
1 回答關(guān)于MVC的問題
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2015-07-20
是的,這樣就不會(huì)出現(xiàn)Fatal error: Interface 'IMooc\IDatabase' not found in的錯(cuò)誤了。
2015-04-12
沒錯(cuò),就是這樣。以下就是我的代碼
<?php
namespace imooc;
interface Idatabase
{
function connect($host,$user,$pass,$dbname);
function query($sql);
function close();
}