首頁 >後端開發 >php教程 >thinkPHP簡單呼叫函數與類別庫

thinkPHP簡單呼叫函數與類別庫

WBOY
WBOY原創
2018-04-08 09:59:121777瀏覽

函數呼叫:

lib公用函式庫叫common.php

App/common/common.php

分組模組下的公用函式庫叫做function.php

App/Modules/Admin/common/function.php

類別庫呼叫:

class IndexAction extends Action{
 public function index(){
// 呼叫「擴充基底類別庫」 ThinkPHP/Extend/Library/ORG/Util/Test.class.php
  import('ORG.Util.Test');
  $test = new Test();
  // 呼叫「擴充基底類別庫」 ThinkPHP/Extend/Library/Com/Util/Test.class.php
  import('Com.Util.Test');
  $test = new Test() ;
  // 呼叫「核心基底類別庫」 ThinkPHP/Lib/Core/Test.class.php
  import('Think.Core.Test');
  $test = new Test();
  $this->display();
 }
}


#

以上是thinkPHP簡單呼叫函數與類別庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn