這篇文章主要介紹了thinkPHP簡單調用函數與類別庫的方法,簡單講述了thinkPHP公共函數庫的文件位置並結合實例分析了類別庫的調用方法,需要的朋友可以參考下
本文實例講述了thinkPHP呼叫函數與類別庫的方法。分享給大家供大家參考,具體如下:
手冊上說的很冗餘,沒看懂,下面簡單的講一下具體用法。
函數呼叫:
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如何寫自己函數和類,放在什麼位置,怎麼調用,求教
ThinkPHP3.2框架使用addAll()批次插入資料的方法分享
#以上是thinkPHP簡單呼叫函數與類別庫方法的範例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!