extend/maile/cc.php 檔案目錄
cc檔案必須加上命名空間,如下
cc.php檔案內容如下:
namespace maile; //命名空間maile是資料夾名稱class Cc { //類別名稱
public function ac(){ echo "chengjing";
}
}
use maile\cc; //引用maile資料夾下的cc.php檔案
public function index()
{
$b=new Cc(); echo $b->ac(); // 輸出chengjing
}
以上是【Thinkphp 5】 如何引入extend拓展文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!