ci框架学习整理

--

-- 表的结构 `yi_article`

--

CREATE TABLE IF NOT EXISTS `yi_article` (

`id` int(11) unsigned NOT NULL auto_increment,

`title` varchar(256) NOT NULL,

`content` mediumtext NOT NULL,

`add_man` varchar(20) NOT NULL,

`add_time` datetime NOT NULL,

`views` int(11) NOT NULL,

`tag` tinyint(4) NOT NULL,

PRIMARY KEY  (`id`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=21 ;

article.php

<?php

class Article extends CI_Controller{

public $tips;

function __construct(){

parent::__construct();

//加载我自己的类库

$this->load->library(‘myclass‘);

$this->load->database();

$this->load->helper(‘url‘);

$this->tips=array(

‘required‘=>‘ [%s] 是必须填写的!‘,

‘is_unique‘=>‘此 [%s] 已经存在,请输入其它名称!‘,

‘min_lenght‘=>‘ [%s] 最小长度为 [%s]‘,

‘max_length‘=>‘[%s] 最大长度为 [%s]‘

);

}

function index(){

echo "这里是文章的首页";

echo "<br />";

//加载url辅助函数

$this->load->helper(‘url‘);

$addr=site_url(‘article/article_list‘);

echo "<a href=‘$addr‘>查看文章</a>";

$addr=site_url(‘article/article_page‘);

echo "<a href=‘$addr‘>查看分页</a>";

}

function article_list(){

echo "这里是文章列表";

//加载数据库模型

//$this->load->model(‘article_model‘);

//$this->article_model->index();

//读取所有的文章

$this->load->database();

echo "<br />";

$query=$this->db->where("id >",5)->select(‘id,title‘)->from(‘article‘)->order_by(‘id‘,‘desc‘)->limit(4)->get();

$info=$query->result_array();//当然你可以用result()

$this->myclass->p($info);

echo "第一条记录的标题:".$info[0][‘title‘];

echo "<br />";

echo "第二条记录的标题:".$info[1][‘id‘];

echo "<br />";

echo "表article中共有这么些记录:".$this->db->count_all(‘article‘);

echo "<br />";

echo "本次共查询出这么些条记录:".$query->num_rows();

}

function article_page($page=1){

///////////////////////////////////

$config=array();

//第一步查询出总记录数

$this->load->database();

$config[‘total_rows‘]=$this->db->select(‘*‘)->from(‘article‘)->count_all_results();

//每页记录数

$config[‘per_page‘]=5;

//基础url

$this->load->helper(‘url‘);

$config[‘base_url‘]=site_url(‘article/article_page‘);

//显示的链接数

$config[‘num_links‘]=100;

//在地址栏显示当前页码

$config[‘use_page_numbers‘]=true;

//定义首页

$config[‘first_link‘]=‘首页‘;

//定义末页

$config[‘last_link‘]=‘尾页‘;

//上一页

$config[‘prev_link‘]=‘上一页‘;

//下一页

$config[‘next_link‘]=‘下一页‘;

//把分页包起来

$config[‘full_tag_open‘]=‘<p>‘;

$config[‘full_tag_close‘]=‘</p>‘;

//第二步加载类库

$this->load->library(‘pagination‘);

$this->pagination->initialize($config);

echo $this->pagination->create_links();

/////////////////////////////////////

$page=$page?intval($page):1;

$start=($page-1)*$config[‘per_page‘];

$query=$this->db->select(‘*‘)->from(‘article‘)->limit($config[‘per_page‘],$start);

$info=$query->get()->result_array();

$this->myclass->p($info);

echo $this->pagination->create_links();

//echo base_url(‘abc/def‘);

}

protected function _page($total_rows,$per_page,$base_url){

///////////////////////////////////

$config=array();

//第一步查询出总记录数

//$this->load->database();////

$config[‘total_rows‘]=$total_rows;

//每页记录数

$config[‘per_page‘]=$per_page;

//基础url

$this->load->helper(‘url‘);////

$config[‘base_url‘]=site_url($base_url);

//显示的链接数

$config[‘num_links‘]=100;

//在地址栏显示当前页码

$config[‘use_page_numbers‘]=true;

//定义首页

$config[‘first_link‘]=‘首页‘;

//定义末页

$config[‘last_link‘]=‘尾页‘;

//上一页

$config[‘prev_link‘]=‘上一页‘;

//下一页

$config[‘next_link‘]=‘下一页‘;

//把分页包起来

$config[‘full_tag_open‘]=‘<p>‘;

$config[‘full_tag_close‘]=‘</p>‘;

//第二步加载类库

$this->load->library(‘pagination‘);

$this->pagination->initialize($config);

return $this->pagination->create_links();

/////////////////////////////////////

}

function page($page=1){

$config[‘per_page‘]=5;

$page=$page?intval($page):1;

$start=($page-1)*$config[‘per_page‘];

$query=$this->db->select(‘*‘)->from(‘article‘)->limit($config[‘per_page‘],$start);

$info=$query->get()->result_array();

return $info;

}

function article_add(){

$this->load->library(‘form_validation‘);

//开始设置验证规则

//set_message可以传一个一维数组

$chinesetips=$this->tips;

$this->form_validation->set_message($chinesetips);

/*

$this->form_validation->set_message(‘required‘, ‘ [%s] 是必须填写的!‘);

$this->form_validation->set_message(‘is_unique‘, ‘此 [%s] 已经存在,请输入其它名称!‘);

$this->form_validation->set_message(‘min_length‘, ‘ [%s] 最小长度为 [%s]‘);

$this->form_validation->set_message(‘max_length‘, ‘ [%s] 最大长度为 [%s]‘);

*/

$this->form_validation->set_rules(‘title‘,‘标题‘,‘trim|required|is_unique[article.title]|min_length[6]|max_length[12]‘);

$this->form_validation->set_rules(‘content‘,‘内容‘,‘required‘);

$this->form_validation->set_rules(‘tag‘,‘状态‘,‘required‘);

if($this->form_validation->run()==true){

echo "表单验证成功!";

print_r($this->input->post());

$data=$this->input->post();

unset($data[‘Submit‘]);

$data[‘add_time‘]=date(‘Y-m-d H:i:s‘);

$data[‘views‘]=‘0‘;

$st=$this->db->insert(‘article‘,$data);

if($st){

echo "数据插入成功!";

echo "新的id为:".$this->db->insert_id();

}

//echo get_magic_quotes_gpc();

}else{

echo "表单验证失败!";

echo "<br />";

echo validation_errors();

}

}

function article_add_viewer(){

$this->load->helper(‘url‘);

$this->load->view(‘article_add‘);

}

function article_links(){

$addr=site_url(‘article/article_mod_viewer/19‘);

echo "<a href=‘$addr‘>修改19</a>";

}

function article_mod_viewer($id){

if($id==""){

echo "没有传递参数";

exit;

}

$this->load->helper(‘url‘);

//从数据库中查出来

$query=$this->db->select()->from(‘article‘)->where(‘id‘,$id)->get();

$info=$query->row_array();

print_r($info);

$this->load->view(‘article_mod‘,$info);

}

function abc($val){

$this->form_validation->set_message(‘abc‘,‘不行‘);

//p($val);

return true;

}

function article_mod(){

$this->load->library(‘form_validation‘);

//开始设置验证规则

//set_message可以传一个一维数组

$chinesetips=$this->tips;

$this->form_validation->set_message($chinesetips);

$this->form_validation->set_rules(‘title‘,‘标题‘,‘trim|required|min_length[6]|max_length[12]|callback_abc‘);

$this->form_validation->set_rules(‘content‘,‘内容‘,‘required‘);

$this->form_validation->set_rules(‘tag‘,‘状态‘,‘required‘);

if($this->form_validation->run()==true){

echo "表单验证成功!";

print_r($this->input->post());

$data=$this->input->post();

$id=$data[‘id‘];

unset($data[‘id‘]);

unset($data[‘Submit‘]);

$data[‘add_time‘]=date(‘Y-m-d H:i:s‘);

$data[‘views‘]=‘0‘;

//p($data);

$st=$this->db->where(‘id‘,$id)->update(‘article‘,$data);

if($st){

echo "数据修改成功";

}else{

echo "数据修改失败";

}

}else{

echo "表单验证失败!";

echo "<br />";

echo validation_errors();

}

}

function article_del($id=‘‘){

if($id==""){

//exit(‘请传id‘);

}

$id=array(17,18,19);

$this->db->where_in(‘id‘,$id)->delete(‘article‘);

$st=$this->db->affected_rows();

echo $st;

if($st){

echo "数据删除成功!";

}else{

echo "数据删除失败!";

}

}

}

?>

article_add.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<meta name="author" content="Www.XiaZaiBa.Com" />

<title>无标题 1</title>

</head>

<body>

<form name="form1" action="<?php echo site_url(‘article/article_add‘)?>" method="post">

标题:<input name="title" type="text" value="" /><br />

内容:<input name="content" type="text" value="" /><br />

添加人:<input name="add_man" type="text" value="" /><br />

添加时间:系统自动记录<br />

状态:<input name="tag" type="radio" value="1" />显示 <input name="tag" type="radio" value="0" />隐藏<br />

<input type="submit" name="Submit" value="提交" />

</form>

</body>

</html>

article_mod.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<meta name="author" content="Www.XiaZaiBa.Com" />

<title>无标题 1</title>

</head>

<body>

<form name="form1" action="<?php echo site_url(‘article/article_mod‘)?>" method="post">

标题:<input name="title" type="text" value="<?php echo $title;?>" /><br />

内容:<input name="content" type="text" value="<?php echo $content?>" /><br />

添加人:<input name="add_man" type="text" value="<?php echo $add_man;?>" /><br />

添加时间:系统自动记录<br />

状态:<input name="tag" type="radio" value="1" <?php if($tag==1)echo ‘checked‘;?> />显示 <input name="tag" type="radio" value="0" <?php if($tag==0)echo ‘checked‘;?> />隐藏<br />

<input type="submit" name="Submit" value="提交" />

<input type="hidden" value="<?php echo $id;?>" name="id" />

</form>

</body>

</html>

时间: 2024-10-16 01:32:22

ci框架学习整理的相关文章

CI框架学习(1)-框架介绍控制器建立与访问

前言:入行算3年了,专职开始敲代码也有1年半的时间.技术底子一直很差,现在依然在菜鸟级别,上班都是无用功的忙碌很少思考终结,导致代码敲了就忘没有积累.工作期间大致使用过3个框架ecshop.ThinkPhP.CI,都是皮毛不深入,代码管理的也都很混乱.基于现在手上的项目是用CI框架,就决定系统学习下此框架,打下基础方便于以后对项目的管理. 学习形势:看视频 + 笔记(仅记录重点或不知道的知识)    视频地址(CI框架学习(1)-框架介绍控制器建立与访问) [重点1]CI框架的目录结构 appl

各种demo——CI框架学习

寒假学习一下CI框架,请各位多多指教! 一.CI的HelloWorld! 注意:CI禁止直接通过文件目录来访问控制器. ./application/controllers/hello.php 1 <?php 2 //放止用户直接通过路径来访问控制器,如果这样的话会显示找不到(封装) 3 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 4 5 class Hello extends CI_Controller

后盾网-CI框架学习笔记

CI框架: 表单验证: 载入验证类 $this->load->library('form_validation'); 设置规则 $this->form_validation->set_rules('name值','规则'); 执行验证 $this->form_validation->run() 表单验证辅助函数: $this->load->helper('form'); 1. set_value('name') //重填数据 2. form_error('n

CI框架学习之六 ( 数据库查询缓存优化 )

CI框架中有个比较好的查询优化,就是数据库缓存优化 1.开启缓存 //在application/config.php中开启 $db['default']['cache_on'] = TRUE; //在application/config.php中开启 $db['default']['cachedir'] = './cache'; //并在对应的目录中加一个可写缓存目录cache 2. 在对应的查询中开启缓存语句 // 打开缓存开关 $this->db->cache_on(); $query =

CI框架学习笔记4——Benchmark.php

我们回到Codeigniter.php上继续往下看,第一个引入的类文件是Benchmark.php,这个文件主要是提供基准测试,具体使用方法参考手册http://codeigniter.org.cn/user_guide/libraries/benchmark.html.建议小伙伴们都读一读手册,弄懂功能的使用后,再来分析代码,才会事半功倍.不多说了,下面进入正题. 测试类定义了一个数组变量public $marker = array(),他的目的主要是用来记录我们在文件中添加的测试点. pub

SSH框架学习整理(一)

★J2EE是一套全然不同于传统应用开发的技术架构,包含许多组件,主要可简化且规范应用系统的开发与部署,进而提高可移植性.安全与再用价值. 其核心是一组技术规范与指南,其中所包含的各类组件.服务架构及技术层次,均有共同的标准及规格,让各种依循J2EE架构的不同平台之间,存在良好的兼容性, 解决过去企业后端使用的信息产品彼此之间无法兼容,企业内部或外部难以互通的窘境.J2EE组件和"标准的" Java类的不同点在于:它被装配在一个J2EE应用中,具有固定的格式并遵守J2EE规范,由J2EE

CI框架学习笔记

一.CI版本 开发版本3.1.2   下载地址:https://github.com/bcit-ci/CodeIgniter/archive/3.1.2.zip 二.开发步骤 1.解压文件到www/ci 目录下 2.创建数据库 myci  后建表 user CREATE TABLE `user` ( `id` int(5) NOT NULL AUTO_INCREMENT, `uname` varchar(20) DEFAULT NULL, `age` int(2) DEFAULT NULL, `

【ci框架学习】控制器-视图

基础的东西就不写了,网上大把的教程,可以慢慢磨.这里说些要注意的要点. 1.所有控制器都必须间接或者直接继承控制器基类 CI_Controller. 2.文件命名尽量小写,因为ci使用的是pathinfo,浏览器大小写敏感. 3.$this->load->view('user');  可以加载 名为user的视图,$this->load->view('user/index') 加载在user文件夹下的index视图文件. 4.与控制器名同名的为构造函数,默认会被调用,并非想实现这样

CI框架学习之七 ( 常用图像处理 封装 )

其实微信手机端上图时,列表图最好是缩略图,节省流量,这不,又被移动坑了一把,话费签一分就停机,流量欠到90块才停机,我也是醉了... 不说废话了,下面是用CI 的内置处理图像的库写的,小弟不才,遗漏之处敬请指出,谢谢. /** * 生成缩略图 * @param $path 原图的本地路径 * @return null 创建一个 原图_thumb.扩展名 的文件 * */ public function dealthumb($path){ $config['image_library'] = 'g