码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp条用函数与类库

时间:2016-09-09 09:56:20      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

 

函数调用:

 

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条用函数与类库

标签:

原文地址:http://www.cnblogs.com/chinalorin/p/5855341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!