- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章CI框架常用函数封装实例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例讲述了CI框架常用函数封装。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/**
* 封装查询函数
*/
public
function
get_what(
$table
=
''
,
$where
=
array
(),
$fields
=
' * '
){
if
(
''
==
$table
){
return
false;
}
//查询并返回相关结果
$query
=
$this
->db->select(
$fields
)->where(
$where
)->get(
$table
);
$res
=
$query
->result_array();
return
$res
;
}
/**
* 封装单条查询函数
*/
public
function
get_row(
$table
=
''
,
$where
=
array
(),
$fields
=
' * '
){
if
(
''
==
$table
){
return
false;
}
//查询并返回相关结果
$query
=
$this
->db->select(
$fields
)->where(
$where
)->get(
$table
);
$res
=
$query
->row_array();
return
$res
;
}
/**
* 封装更新函数
*/
public
function
update_what(
$table
=
''
,
$where
=
array
(),
$data
=
array
()){
if
(
''
==
$table
|| true ===
empty
(
$where
) || true ===
empty
(
$data
)){
return
false;
}
//更新相应的字段
$query
=
$this
->db->update(
$table
,
$data
,
$where
);
return
$query
;
}
/**
* 扩展数据库函数之自增 自减
* using:
* $table = 'codeuser';
$where = array('id'=>1);
$data = array('usestate'=>'usestate+1','imgtype' => 'imgtype-1');
*/
public
function
update_count(
$table
=
''
,
$where
=
array
(),
$data
=
array
()){
//如果表名为空 或者数据为空则直接 返回false
if
(
''
==
$table
||
empty
(
$data
)){
return
false;
}
foreach
(
$data
as
$key
=>
$val
){
if
(false !==
stripos
(
$val
,
'+'
) || false !==
stripos
(
$val
,
'-'
)){
$this
->db->set(
$key
,
$val
, FALSE);
}
else
{
$this
->db->set(
$key
,
$val
);
}
}
$res
=
$this
->db->where(
$where
)->update(
$table
);
return
$res
;
}
/**
* 封装插入函数
*/
public
function
insert_what(
$table
=
''
,
$data
=
array
()){
if
(
''
==
$table
|| true ===
empty
(
$data
)){
return
false;
}
//插入 相关记录
$query
=
$this
->db->insert(
$table
,
$data
);
return
$query
;
}
/**
* 删除记录封装函数
*/
public
function
delete_what(
$table
=
''
,
$where
=
array
()){
if
(true ===
empty
(
$where
) ||
''
==
$table
){
return
false;
}
//删除相关表记录
$query
=
$this
->db->
delete
(
$table
,
$where
);
return
$query
;
}
/**
* debug 相关函数
*/
public
function
debug_what(
$org_error
=
''
){
$con
=
$this
->router->fetch_class();
$func
=
$this
->router->fetch_method();
if
(
$org_error
){
$error
.=
date
(
"Y-m-d H:i:s"
,time()).
"\r\n"
;
$error
.=
__FILE__
.
"\r\n"
;
$error
.=
$con
.
" 控制器下的:\r\n"
;
$error
.=
$func
.
" 方法调试信息如下:\r\n"
;
$error
.=
$org_error
;
file_put_contents
(
"./error_log.txt"
,
$error
.
"\r\n"
,FILE_APPEND);
}
}
|
希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助.
最后此篇关于CI框架常用函数封装实例的文章就讲到这里了,如果你想了解更多关于CI框架常用函数封装实例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
本文主要给大家介绍Mysql数据库分库和分表方式(常用),涉及到mysql数据库相关知识,对mysql数据库分库分表相关知识感兴趣的朋友一起学习吧 1 分库 1.1 按照功能分库 按照功能进行
在当前对象由其他包含对象操作的系统中,当传递对当前对象的引用时,链接似乎一直在继续......没有任何结束(对于下面的代码,Car ->myCurrentComponent->myCar_Brake-
我有一个密码 UIAlertView,我们要求用户提供。我需要根据情况在不同的 View 上询问它,从 downloadViewController (用户下载数据后),当他们切换到他们的数据时(如果
我正在尝试编写一个函数,使得对于任何整数 x 的 P(x) 都有一个包含三个元素的列表,即平方、立方和 n 的四次方,但我仍然不知道如何组合然后制作一个函数,例如我有平方、立方体和 4 次幂函数下面是
关闭。这个问题需要更多 focused .它目前不接受答案。 关闭4年前。 锁定。这个问题及其答案是locked因为这个问题是题外话,但具有历史意义。它目前不接受新的答案或交互。 我能否列出一份常见的
Python 常用 PEP8 编码规范 代码布局 缩进 每级缩进用4个空格。 括号中使用垂直隐式缩进或使用悬挂缩进。 EXAMPLE: ?
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 去年关闭。 Improve this questio
在经典 ui 中,您可以使用 xtype:cqinclude 包含来自不同路径的 rtePlugins,基本上为标准 RTE 插件创建一个位置,我如何在 Touch UI 中执行相同操作? 我尝试使用
在经典 ui 中,您可以使用 xtype:cqinclude 包含来自不同路径的 rtePlugins,基本上为标准 RTE 插件创建一个位置,我如何在 Touch UI 中执行相同操作? 我尝试使用
*strong text*我有多个网络应用程序使用了一些常见的依赖项,比如蒙戈连接器谷歌 Guava 乔达时间 我想到将它们从 webapp/WEB-INF/lib 中取出并放入一些 common-l
我正在编写一个 Web 服务器,我想知道哪些 HTTP 请求 header (由客户端发送)是最常见的,因此我应该重点实现。 目前,我只支持Accept 和Host。 最佳答案 不确定您的范围,但由于
我是一名优秀的程序员,十分优秀!