标签:
摘自 : 开源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();
标签:
原文地址:http://www.cnblogs.com/q3114140374/p/4589973.html