Thinkphp学习笔记
发布:smiling 来源: PHP粉丝网 添加日期:2014-04-19 09:11:37 浏览: 评论:0
Thinkphp学习笔记
一、入口index.php
- <?php
- require './ThinkPHP/ThinkPHP.php';
- ?>
二、配置Conf/config.php
- <?php
- return array(
- //'配置项' => '配置值'
- 'DB_TYPE' => 'mysql', //使用的数据库类型
- 'DB_HOST' => 'localhost',
- 'DB_NAME' => '', //数据库名
- 'DB_USER' => '', //访问数据库账号
- 'DB_PWD' => '',//访问数据库密码
- 'DB_PORT' => '3306',
- 'DB_PREFIX' => '',//表前缀
- 'APP_DEBUG' => true,//调试模式开关
- 'TOKEN_ON' => true,//是否开启令牌验证
- 'URL_MODEL' => 1,//URL模式:0普通模式 1PATHINFO 2REWRITE 3兼容模式
- //'SHOW_PAGE_TRACE'=> true,
- //'APP_DEBUG'=>true,
- 'DB_FIELD_CACHE'=>false,
- 'HTML_CACHE_ON'=>false,
- );
- ?>
三、模板使用
结构图
- ├─Down
- │ index.html
- │
- ├─Game
- │ index.html
- │
- ├─Index
- │ index.html
- │
- ├─LineGame
- │ index.html
- │
- ├─Public
- │ footer.html
- │ top.html
- │
- └─Video
- index.html
1、根目录Public文件夹
__PUBLIC__
网址
__ROOT__
2、引用公用的模板文件
<include file="Public:top" />引用的是Tpl\Public\top.html
<include file="Public:footer"/>
四、系统文件
1、Lib\Action\IndexAction.class.php
执行的是模板Tpl\Index\index.html
遵循的原则是在哪个函数里执行就用哪个函数对应的模板
- <?php
- // 本类由系统自动生成,仅供测试用途
- class IndexAction extends Action {
- public function index(){
- //listvideo
- $video = M( 'video' ); // 实例化模型类
- $re=$video->where("id>=1 && id<=10")->select(); //查找
- $this->assign('listvideo',$re);
- //listdown
- $down = M( 'down' ); // 实例化模型类
- $re=$down->select();
- $this->assign('listdown',$re);
- //lm
- $lm = M( 'lm' ); // 实例化模型类
- $re=$lm->where("id>=1&&id<=10")->select(); //查找
- $this->assign('listlm',$re);
- //listjc
- $jc = M( 'jc' ); // 实例化模型类
- $re=$jc->where("id>=1&&id<=10")->select(); //查找
- $this->assign('listjc',$re);
- //display
- $this->display();
- }
- }
列表及分页
- <?php
- // 本类由系统自动生成,仅供测试用途
- class VideoAction extends Action {
- public function index(){
- //listvideo
- $video = M( 'video' ); // 实例化模型类
- import("ORG.Util.Page");//导入分页类
- $count = $video->count(); //计算总数
- $p = new Page($count, 10);
- $list = $video->limit($p->firstRow . ',' . $p->listRows)->order('id desc')->select();
- //$p->firstRow 当前页开始记录的下标,$p->listRows 每页显示记录数
- $p->setConfig('header', '条数据');
- $p->setConfig('prev', "\<IMG src=\"__PUBLIC__\/image\/lt.gif\" align=absMiddle\>");
- $p->setConfig('next', "\<IMG src=\"__PUBLIC__\/image\/gt.gif\" align=absMiddle\>");
- $p->setConfig('first', '<<');
- $p->setConfig('last', '>>');
- $page = $p->show(); //分页的导航条的输出变量
- $this->assign("page", $page);
- $this->assign("listvideo", $list); //数据循环变量
- $this->assign('count',$count);
- //lm
- $lm = M( 'lm' ); // 实例化模型类
- $re=$lm->where("id>=1&&id<=10")->select();
- $this->assign('listlm',$re);
- //listjc
- $jc = M( 'jc' ); // 实例化模型类
- $re=$jc->where("id>=1&&id<=10")->select();
- $this->assign('listjc',$re);
- //display
- $this->display();
- }
- }
Tags: Thinkphp 笔记
- 上一篇:第一次用THINKPHP 报路径错
- 下一篇:ThinkPHP 基本注意事项
相关文章
- ·ThinkPHP中自定义错误页面和提示页面 (2013-11-15)
- ·ThinkPHP中Ajax返回(2013-11-15)
- ·ThinkPHP中处理表单中注意(2013-11-15)
- ·ThinkPHP中I(),U(),$this->post()等函数(2013-11-15)
- ·ThinkPHP中公共函数路径和配置项路径的映射(2013-11-15)
- ·ThinkPHP中公共配置文件和各自项目中的配置文件组合(2013-11-15)
- ·ThinkPHP在控制器里的javascript代码不能执行解决方法(2013-11-29)
- ·ThinkPHP3.0略缩图不能保存到子目录(2013-12-03)
- ·thinkphp的循环结构(2014-01-10)
- ·thinkphp特殊标签使用(2014-01-10)
- ·thinkphp模板输出汇总(2014-01-10)
- ·thinkphp模板的赋值与替换(2014-01-10)
- ·thinkphp连贯操作(2014-01-10)
- ·thinkphp区间查询、统计查询、SQL直接查询(2014-01-10)
- ·thinkphp的普通查询与表达式查询(2014-01-10)
- ·RBAC类在ThinkPHP中的四种使用方法(2014-01-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)