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

thinkphp 中自定义类库的加载

时间:2015-06-20 01:31:09      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

摘自 : 开源it
加载框架类库。服务类/助手类 加载翻页类 import("ORG.Util.Page"); $count = 100; $Page = new Page($count,12); echo $Page->show(); 实际加载了文件:ThinkPHP\Extend\Library\ORG\Util\Page.php ThinkPHP\Extend\Library\ORG\Util\ 下面有很多类库文件。包括图像处理Image.class.php import("ORG.Util.Page"); 图像验证码: buildImageVerify GBVerify(中文) 生成缩略图: thumb thumb2 自己的类库 加载自己的翻页类 import("@.Tools.page",‘‘,".php"); $page=new page(4,100); echo $page->getCode(); 实际加载了文件:项目\Lib\Tools\page.php 为什么没有$_GET[‘m‘]/$_GET[‘a‘]值 ThinkPHP\Lib\Core\Dispatcher.class.php getModule getAction 如何正常使用第三方翻页类 MODULE_NAME ACTION_NAME 加载自己的图像处理类 import("@.Tools.CreateImg",‘‘,".php"); $createImg=new createImg($imgConfig,$createConfig); $createImg->execute();

thinkphp 中自定义类库的加载

标签:

原文地址:http://www.cnblogs.com/q3114140374/p/4589973.html

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