代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PHP
】
数据库查询语句构造类
作者:
天顺
/ 发布于
2017/10/12
/
1202
/** * SQL Query Builder * * @author CRH380A-2722 <609657831@qq.com> */ class QueryBuilder { /** * 查询语句碎片 * * @var array * @access private */ private $_querySnippets = array(); /** * 数据表前缀 * * @var string * @access private */ private $_prefix = DB_PREFIX; /** * 构造函数 * * @return void * @access public */ public function __construct() { $this->_querySnippets = array(); } /** * insert * * @param string $table 表名 * @return QueryBuilder * @access public */ public function insert($table) { $this->_querySnippets[] = 'INSERT INTO'; $this->_querySnippets[] = $this->_prefix . $table; return $this; } /** * values (要插入的数据) * * @param array $data 数据集合 * @return QueryBuilder * @access public */ public function values(array $data) { $field = array(); $value = array(); foreach ($data as $f => $v) { $field[] = $f; $value[] = $v; } $this->_querySnippets[] = '(' . implode(',', $field) . ')'; $this->_querySnippets[] = 'VALUES'; $this->_querySnippets[] = '(' . implode(',', $value) . ')'; return $this; } /** * select * * @param string $fields 字段名称 * @return QueryBuilder * @access public */ public function select($fields = '*') { $this->_querySnippets[] = 'SELECT'; $this->_querySnippets[] = $fields; return $this; } /** * select distinct * * @param string $fields 字段名称 * @return QueryBuilder * @access public */ public function distinctSelect($fields = '*') { $this->_querySnippets[] = 'SELECT DISTINCT'; $this->_querySnippets[] = $fields; return $this; } /** * from * * @param string $table 表名 * @return QueryBuilder * @access public */ public function from($table) { $this->_querySnippets[] = 'FROM'; $this->_querySnippets[] = $this->_prefix . $table; return $this; } /** * where * * @param string $condition 选择的条件 * @return QueryBuilder * @access public */ public function where($condition) { $this->_querySnippets[] = 'WHERE'; $this->_querySnippets[] = $condition; return $this; } /** * and * * @param string $condition 选择的条件 * @return QueryBuilder * @access public */ public function andWhere($condition) { $this->_querySnippets[] = 'AND'; $this->_querySnippets[] = $condition; return $this; } /** * or * * @param string $condition 选择的条件 * @return QueryBuilder * @access public */ public function orWhere($condition) { $this->_querySnippets[] = 'OR'; $this->_querySnippets[] = $condition; return $this; } /** * as * * @param string $alias 表别名 * @return QueryBuilder * @access public */ public function asAlias($alias) { $this->_querySnippets[] = 'AS'; $this->_querySnippets[] = $alias; return $this; } /** * join * * @param string $type 联结类型 * @param string $table 表名 * @return QueryBuilder * @access public */ public function join($type, $table) { switch ($type) { case 'inner': $this->_querySnippets[] = 'INNER JOIN'; break; case 'left': $this->_querySnippets[] = 'LEFT JOIN'; break; case 'right': $this->_querySnippets[] = 'RIGHT JOIN'; break; default: break; } $this->_querySnippets[] = $this->_prefix . $table; return $this; } /** * on * * @param string $condition 连接的条件 * @return QueryBuilder * @access public */ public function on($condition) { $this->_querySnippets[] = 'ON'; $this->_querySnippets[] = $condition; return $this; } /** * using * * @param string $field 字段名称 * @return QueryBuilder * @access public */ public function using($field) { $this->_querySnippets[] = 'USING(' . $field . ')'; return $this; } /** * limit * * @param int $limit 限制的条目数 * @param int $offset 决定从哪条结果开始 * @return QueryBuilder * @access public */ public function limit($limit, $offset = NULL) { $this->_querySnippets[] = 'LIMIT'; if ($offset != NULL) { $this->_querySnippets[] = $offset . ',' . $limit; } else { $this->_querySnippets[] = $limit; } return $this; } /** * order by * * @param string $field 字段名 * @param string $type 排序类型 (ASC || DESC) * @return QueryBuilder * @access public */ public function orderBy($field, $type) { $this->_querySnippets[] = 'ORDER BY'; $this->_querySnippets[] = $field; $this->_querySnippets[] = $type; return $this; } /** * group by * * @param string $field 字段名 * @return QueryBuilder * @access public */ public function groupBy($field) { $this->_querySnippets[] = 'GROUP BY'; $this->_querySnippets[] = $field; return $this; } /** * update * * @param string $table 表名 * @return QueryBuilder * @access public */ public function update($table) { $this->_querySnippets[] = 'UPDATE'; $this->_querySnippets[] = $this->_prefix . $table; return $this; } /** * set * * @param string $values 重新设定的值 * @return QueryBuilder * @access public */ public function set($values) { $this->_querySnippets[] = 'SET'; $this->_querySnippets[] = $values; return $this; } /** * delete * * @param string $table 表名 * @return QueryBuilder * @access public */ public function delete($table) { $this->_querySnippets[] = 'DELETE FROM'; $this->_querySnippets[] = $this->_prefix . $table; return $this; } /** * 构建查询语句 * * @return string * @access public */ public function build() { return implode(' ', $this->_querySnippets) . ';'; } /** * @return string * @access public */ public function __toString() { return $this->build(); } }
试试其它关键字
同语言下
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
可能有用的
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
天顺
贡献的其它代码
(
18
)
.
获取url中的参数
.
数据库查询语句构造类
.
字符相似度对比通用类
.
带毫秒的字符转换成时间(DateTime)格式的通用方法
.
批量替换字段中的字符
.
查询每所学校语文成绩最高的学生信息
.
检查代理ip的有效性
.
jquery增加table的行数
.
实现开灯关灯效果
.
Table 固定宽度和换行
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3