php+简单脚本例子,thinkphp 简单的blog程序实例源码(含数据库脚本,onethink)

【实例简介】对于基础很好 ,含数据库脚本文件

【实例截图】

【核心代码】

// ----------------------------------------------------------------------

// | OneThink [ WE CAN DO IT JUST THINK IT ]

// ----------------------------------------------------------------------

// | Copyright (c) 2013 http://www.onethink.cn All rights reserved.

// ----------------------------------------------------------------------

// | Author: 麦当苗儿

// ----------------------------------------------------------------------

namespace Home\Controller;

/**

* 文档模型控制器

* 文档模型列表和详情

*/

class ArticleController extends HomeController {

/* 文档模型频道页 */

public function index(){

/* 分类信息 */

$category = $this->category();

//频道页只显示模板,默认不读取任何内容

//内容可以通过模板标签自行定制

/* 模板赋值并渲染模板 */

$this->assign('category', $category);

$this->display($category['template_index']);

}

/* 文档模型列表页 */

public function lists($p = 1){

/* 分类信息 */

$category = $this->category();

$cate = M('Category')->getByName(I('category'));

$this->assign('cate', $cate);

/* 获取当前分类列表 */

$Document = D('Document');

$list = $Document->page($p, $category['list_row'])->lists($category['id']);

if(false === $list){

$this->error('获取列表数据失败!');

}

/* 模板赋值并渲染模板 */

$this->assign('category', $category);

$this->assign('list', $list);

$this->display($category['template_lists']);

}

/* 文档模型详情页 */

public function detail($id = 0, $p = 1){

/* 标识正确性检测 */

if(!($id && is_numeric($id))){

$this->error('文档ID错误!');

}

/* 页码检测 */

$p = intval($p);

$p = empty($p) ? 1 : $p;

/* 获取详细信息 */

$Document = D('Document');

$info = $Document->detail($id);

if(!$info){

$this->error($Document->getError());

}

/* 分类信息 */

$category = $this->category();

/* 获取模板 */

if(!empty($info['template'])){//已定制模板

$tmpl = $info['template'];

} elseif (!empty($category['template_detail'])){ //分类已定制模板

$tmpl = $category['template_detail'];

} else { //使用默认模板

$tmpl = 'Article/'. get_document_model($info['model_id'],'name') .'/detail';

}

/* 更新浏览数 */

$map = array('id' => $id);

$Document->where($map)->setInc('view');

/* 模板赋值并渲染模板 */

$this->assign('category', $category);

$this->assign('info', $info);

$this->assign('page', $p); //页码

$this->display($tmpl);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值