phpci数据缓存 php常用缓存技术介绍

CI中如何载入一个PHP文件中的数据?分两种情况
如果需要使用model层的数据,直接
$this-load-model('test.php') ; $content = $this-test-function();这样就取到了模型中的数据啊
2.静态页面的话,直接require_once('top.php')
CI的结构分析myshop
|-----system框架程序目录
|-----core框架的核心程序
|-----CodeIgniter.php引导性文件
|-----Common.php加载基类库的公共函数
|-----Controller.php基控制器类文件:CI_Controller
|-----Model.php基模型类文件:CI_Model
|-----Config.php配置类文件:CI_Config
|-----Input.php输入类文件:CI_Input
|-----Output.php输出类文件:CI_Output
|-----URL.phpURL类文件:CI_URl
|-----Router.php路由类文件:CI_Router
|-----Loader.php加载类文件:CI_Loader
|-----helpers辅助函数
|-----url_helper.phpurl相关的辅助函数,如:创建url的辅助函数
|-----captcha_helper.php创建图形验证码的辅助函数
|-----libraries通用类库
|-----Pagination.php通用分页类库
|-----Upload.php通用文件上传类库
|-----Image_lib.php 通用图像处理类库
|-----Session.php通用session类库
|-----language语言包
|-----database数据库操作相关的程序
|-----DB_active_rec.php 快捷操作类文件(ActiveRecord)
|-----fonts字库
|-----application项目目录
|-----core项目的核心程序
|-----helpers项目的辅助函数
|-----libraries通用类库
|-----language语言包
|-----config项目相关的配置
|-----config.php项目相关的配置文件
|-----database.php数据库相关的配置文件
|-----autoload.php设置自动加载类库的配置文件
|-----constants.php 常量配置文件
|-----routes.php路由配置文件
|-----controllers控制器目录
|-----welcome.php控制器文件,继承CI_Controller
|-----models模型目录
|-----welcome_model.php 模型文件,继承CI_Model
|-----views视图目录
|-----welcome.php视图模板文件,默认后缀名为.php
|-----cache存放数据或模板的缓存文件
|-----errors错误提示模板
|-----hooks钩子,在不修改系统核心文件的基础上扩展系统功能
|-----third_party第三方库
|-----logs日志
|-----index.php入口文件
扩展目录结构:
[php] view plaincopy
myshop
|-----system框架程序目录
|-----core框架的核心程序
|-----CodeIgniter.php引导性文件
|-----Common.php加载基类库的公共函数
|-----Controller.php基控制器类:CI_Controller
|-----Model.php基模型类:CI_Model
|-----Config.php配置类:CI_Config
|-----Input.php输入类:CI_Input
|-----Output.php输出类:CI_Output
|-----URL.phpURL类:CI_URl
|-----Router.php路由类:CI_Router
|-----Loader.php加载类:CI_Loader
|-----helpers辅助函数
|-----url_helper.phpurl相关的辅助函数,如:创建url的辅助函数
|-----captcha_helper.php创建图形验证码的辅助函数
|-----xxx_helper.php自定义辅助函数
|-----libraries通用类库
|-----Pagination.php通用分页类库
|-----Upload.php通用文件上传类库
|-----Image_lib.php 通用图像处理类库
|-----Session.php通用session类库
|-----Xxx.php自定义类库
|-----language语言包
|-----database数据库操作相关的程序
|-----DB_active_rec.php 快捷操作类文件(ActiveRecord)
|-----fonts字库
|-----application项目目录
|-----core项目的核心程序
|-----MY_Controller.php 扩展核心基控制器类:CI_Controller
|-----helpers项目的辅助函数
|-----MY_url_helper.php 扩展系统url相关的辅助函数 , 如:创建url的辅助函数
|-----MY_captcha_helper.php扩展系统创建图形验证码的辅助函数
|-----url_helper.php覆盖系统url相关的辅助函数,如:创建url的辅助函数
|-----captcha_helper.php覆盖系统创建图形验证码的辅助函数
|-----xxx_helper.php创建自己的辅助函数
|-----libraries通用类库
|-----MY_Pagination.php 扩展系统通用分页类库
|-----MY_Upload.php 扩展系统通用文件上传类库
|-----MY_Image_lib.php扩展系统通用图像处理类库
|-----MY_Session.php扩展系统通用session类库
|-----Pagination.php覆盖系统通用分页类库
|-----Upload.php覆盖系统通用文件上传类库
|-----Image_lib.php 覆盖系统通用图像处理类库
|-----Session.php覆盖系统通用session类库
|-----Xxx.php创建自己的类库
|-----language语言包
|-----config项目相关的配置
|-----config.php项目相关的配置文件
|-----database.php数据库相关的配置文件
|-----autoload.php设置自动加载类库的配置文件
|-----constants.php 常量配置文件
|-----routes.php路由配置文件
|-----controllers控制器目录
|-----admin自定义目录,后台控制器文件可以划分到此目录中
|-----welcome.php控制器文件,继承CI_Controller,也可以继承MY_Controller
|-----common.php 自定义通用控制器文件,继承CI_Controller,也可以继承MY_Controller
|-----home自定义目录,前台控制器文件可以分化到此目录中
|-----welcome.php控制器文件,继承CI_Controller,也可以继承MY_Controller
|-----common.php 自定义通用控制器文件,继承CI_Controller,也可以继承MY_Controller
|-----welcome.php控制器文件,继承CI_Controller,也可以继承MY_Controller
|-----models模型目录
|-----admin自定义目录,后台模型文件可以划分到此目录中
|-----welcome_model.php 模型文件,继承CI_Model
|-----common_model.php自定义通用模型文件 , 继承CI_Model
|-----home自定义目录,前台模型文件可以划分到此目录中
|-----welcome_model.php 模型文件,继承CI_Model
|-----common_model.php自定义通用模型文件,继承CI_Model
|-----welcome_model.php 模型文件 , 继承CI_Model
|-----views视图目录
|-----admin自定义目录,后台视图模板文件可以划分到此目录中
|-----welcome.php 视图模板文件,后缀名可以是.php,也可以是.html等任意后缀
|-----welcome.html视图模板文件,后缀名可以是.php,也可以是.html等任意后缀
|-----welcome.tpl 视图模板文件,后缀名可以是.php,也可以是.html等任意后缀
|-----home自定义目录,前台视图模板文件可以划分到此目录中
|-----welcome.php 视图模板文件,后缀名可以是.php,也可以是.html等任意后缀
|-----welcome.html视图模板文件,后缀名可以是.php,也可以是.html等任意后缀
|-----welcome.tpl 视图模板文件,后缀名可以是.php,也可以是.html等任意后缀
|-----welcome.php视图模板文件,默认后缀名为.php,后缀名也可以是.html等任意后缀
|-----welcome.html视图模板文件 , 后缀名可以是.php,也可以是.html等任意后缀
|-----welcome.tpl视图模板文件,后缀名可以是.php,也可以是.html等任意后缀
|-----cache存放数据或模板的缓存文件
|-----errors错误提示模板
|-----hooks钩子 , 在不修改系统核心文件的基础上扩展系统功能
|-----third_party第三方库
PHP CI框架修改数据的方法CI框架下的PHP增删改查总结:
controllers下的 cquery.php文件
[php] view plain copy
?php
class CQuery extends Controller {
//构造函数
function CQuery() {
parent::Controller();
//$this-load-database();
}
function index() {
//调用model其中train为外层文件夹MQuery为model名称queryList为重命名
$this-load-model('train/MQuery','queryList');
//获得返回的结果集这里确定调用model中的哪个方法
$result = $this-queryList-queryList();
//将结果集赋给res
$this-smarty-assign('res',$result);
//跳转到显示页面
$this-smarty-view('train/vquery.tpl');
}
//进入新增页面
function addPage() {
$this-smarty-view('train/addPage.tpl');
}
//新增
function add() {
//获得前台数据
//用户名
$memberName = $this-input-post('memberName');
//密码
$password = $this-input-post('password');
//真实姓名
$userRealName = $this-input-post('userRealName');
//性别
$sex = $this-input-post('sex');
//出生日期
$bornDay = $this-input-post('bornDay');
//e_mail
$eMail = $this-input-post('eMail');
//密码问题
$question = $this-input-post('question');
//密码答案
$answer = $this-input-post('answer');
//调用model
$this-load-model('train/MQuery','addRecord');
//向model中的addRecord传值
$result = $this-addRecord-addRecord($memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer);
//判断返回的结果,如果返回true,则调用本页的index方法,不要写 $result == false 因为返回的值未必是false 也有可能是""
if ($result) {
$this-index();
} else {
echo "add failed.";
}
}
//删除
function deletePage() {
//获得ID
$deleteID = $this-uri-segment(4);
//调用model
$this-load-model('train/MQuery','delRecord');
//将值传入到model的delRecord方法中
$result = $this-delRecord-delRecord($deleteID);
//判断返回值
if ($result) {
$this-index();
} else {
echo "delect failed.";
}
}
//修改先查询
function changePage() {
$changeID = $this-uri-segment(4);
$this-load-model('train/MQuery','changeRecord');
$result = $this-changeRecord-changeRecord($changeID);
//将结果集赋给res
$this-smarty-assign('res',$result);
//跳转到显示页面
$this-smarty-view('train/changePage.tpl');
}
【phpci数据缓存 php常用缓存技术介绍】//修改
function change() {
//获得前台数据
//ID
$ID = $this-input-post('id');
//用户名
$memberName = $this-input-post('memberName');
//密码
$password = $this-input-post('password');
//真实姓名
$userRealName = $this-input-post('userRealName');
//性别
$sex = $this-input-post('sex');
//出生日期
$bornDay = $this-input-post('bornDay');
//e_mail
$eMail = $this-input-post('eMail');
//密码问题
$question = $this-input-post('question');
//密码答案
$answer = $this-input-post('answer');
//调用model
$this-load-model('train/MQuery','change');
//向model中的change传值
$result = $this-change-change($ID,$memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer);
//判断返回的结果,如果返回true,则调用本页的index方法,不要写 $result == false 因为返回的值未必是false 也有可能是""
if ($result) {
$this-index();
} else {
echo "change failed.";
}
}
}
models中的 mquery.php 文件
[php] view plain copy
?php
class MQuery extends Model {
//构造函数
function MQuery() {
parent::Model();
//连接数据库
$this-load-database();
}
//查询列表
function queryList() {
//防止select出的数据存在乱码问题
//mysql_query("SET NAMES GBK");
//SQL语句
$sql = "SELECT ID,member_name,sex,e_mail FROM user_info_t";
//执行SQL
$rs = $this-db-query($sql);
//将查询结果放入到结果集中
$result = $rs-result();
//关闭数据库
$this-db-close();
//将结果集返回
return $result;
}
//新增
function addRecord($memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer) {
//防止select出的数据存在乱码问题
//mysql_query("SET NAMES GBK");
//SQL语句
$sql = "INSERT INTO user_info_t (member_name,password,user_real_name,sex,born_day,e_mail,question,answer) " .
"VALUES ('$memberName','$password','$userRealName','$sex','$bornDay','$eMail','$question','$answer')";
//执行SQL
$result = $this-db-query($sql);
//关闭数据库
$this-db-close();
//返回值
return $result;
}
//删除
function delRecord($deleteID) {
//防止select出的数据存在乱码问题
//mysql_query("SET NAMES GBK");
$sql = "DELETE FROM user_info_t WHERE ID = $deleteID";
$result = $this-db-query($sql);
$this-db-close();
return $result;
}
//修改前查询
function changeRecord($changeID) {
//防止select出的数据存在乱码问题
//mysql_query("SET NAMES GBK");
$sql = "SELECT ID,member_name,password,user_real_name,sex,born_day,e_mail,question,answer FROM user_info_t WHERE ID = $changeID";
//执行SQL
$rs = $this-db-query($sql);
$result = $rs-row();//$result = $rs[0]
//关闭数据库
$this-db-close();
//将结果集返回
return $result;
}
//修改
function change($ID,$memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer) {
//防止select出的数据存在乱码问题
//mysql_query("SET NAMES GBK");
//SQL语句
$sql = "update user_info_t set member_name = '$memberName',password = '$password', user_real_name = '$userRealName'," .
"sex = '$sex',born_day = '$bornDay',e_mail = '$eMail',question = '$question',answer = '$answer'" .
"where ID = $ID";
//执行SQL
$result = $this-db-query($sql);
//关闭数据库
$this-db-close();
//返回值
return $result;
}
}
views 下的 addPage.tpl文件
[php] view plain copy
html
head
/head
bodyform action="{{site_url url='train/cquery/add'}}" method="post"
table border='1'
tr
td用户名/td
tdinput type="text" class="text" name="memberName" id="memberName"//td
/tr
tr
td密码/td
tdinput type="text" class="text" name="password" id="password"//td
/tr
tr
td真实姓名/td
tdinput type="text" class="text" name="userRealName" id="userRealName"//td
/tr
tr
td性别/td
tdinput type="text" class="text" name="sex" id="sex"//td
/tr
tr
td出生日期/td
tdinput type="text" class="text" name="bornDay" id="bornDay"//td
/tr
tr
tde_mail/td
tdinput type="text" class="text" name="eMail" id="eMail"//td
/tr
tr
td密码问题/td
tdinput type="text" class="text" name="question" id="question"//td
/tr
tr
td密码答案/td
tdinput type="text" class="text" name="answer" id="answer"//td
/tr
/table
table
tr
tdinput type="submit" class="button" name="OK" value="https://www.04ip.com/post/提交" /
/td
/tr
/table/form
/body
/html
关于phpci数据缓存和php常用缓存技术介绍的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读