I wrote a simple ORM class myself to provide some ideas for interested friends.
I wrote a simple ORM class by myself to provide some ideas for interested friends. I borrowed a little bit of TP’s ideas. <?php <br />
/**<br>
* author: NickBai<br>
*createTime: 2016/11/28 0028 4:00 pm<br>
*/<br>
class MyOrm implements ArrayAccess<br>
{<br>
Public $host = '127.0.0.1'; //Database address<br>
Public $dbname = 'test'; //Database name<br>
Public $user = 'root'; //Database user name<br>
Public $pwd = 'root'; //Database password<br>
Public $port = '3306'; //Database port<br>
Public $charset = 'utf8'; //Database encoding<br>
Private $ conn = null; // Database link resources <br>
Private $alias = []; //Record global statement parameters<br>
private $sql; // Store the last sql<br>
<br>
Public function __construct()<br>
{<br>
if(
<br>
$dsn = "mysql:host=$this->host;dbname=$this->dbname;charset=$this->charset;port=$this->port";<br>
$this->conn = new PDO( $dsn, $this->user, $this->pwd);<br>
}<br>
}<br>
<br>
//Field statement<br>
Public function field($field)<br>
{<br>
If (! Is_string ($ field)) {<br>
throw new exception("The parameters of the field statement must be strings");<br>
}<br>
<br>
$this->alias['field'] = $field;<br>
Return $ this; <br>
}<br>
<br>
//table statement<br>
Public function table($table)<br>
{<br>
if(
throw new exception("The parameters of the table statement must be strings");<br>
}<br>
<br>
$this->alias['table'] = $table;<br>
Return $ this; <br>
}<br>
<br>
//where statement<br>
Public function where($where)<br>
{<br>
$this->alias['where'] = '';<br>
if(is_array($where)){<br>
<br>
foreach( $where as $key=>$vo ){<br>
$this->alias['where'] .= " `$key`" . ' = ' . $vo . ' and ';<br>
}<br>
$this->alias['where'] = rtrim( $this->alias['where'], 'and ' );<br>
<br>
}else if( is_string( $where )){<br>
<br>
$this->alias['where'] = $where;<br>
}else{<br>
<br>throw new exception("The parameters of the where statement must be an array or a string");<br>
}<br>
<br>
Return $ this; <br>
}<br>
<br>
//limit statement<br>
Public function limit($limit)<br>
{<br>
$this->alias['limit'] = '';<br>
if(
$this->alias['limit'] = '0,' . $limit;<br>
}else if( is_string( $limit )){<br>
$this->alias['limit'] = $limit;<br>
}else{<br>
throw new exception("The parameters of the limit statement must be numbers or strings");<br>
}<br>
<br>
Return $ this; <br>
}<br>
<br>
//Order statement<br>
Public function order( $order)<br>
{<br>
if(
throw new exception("The parameters of the order statement must be strings");<br>
}<br>
<br>
$this->alias['order'] = $order;<br>
Return $ this; <br>
}<br>
<br>
//group statement<br>
Public function group($group)<br>
{<br>
If (! Is_string ($ Group)) {<br>
throw new exception("The parameter of the group statement must be a string");<br>
}<br>
<br>
$this->alias['group'] = $group;<br>
Return $ this; <br>
}<br>
<br>
//Parse query sql statement<br>
Public function ParseSelectSql()<br>
{<br>
$this->sql = 'select *';<br>
If( !empty( $this->alias['field'] ) ){<br>
$this->sql = str_replace( '*', $this->alias['field'], $this->sql );<br>
}<br>
<br>
If (Empty ($ this- & gt; alias ['table'])) {<br>
throw new exception("Please use the table clause to set the query table");<br>
}else{<br>
<br>
$this->sql .= ' from ' . $this->alias['table'];<br>
}<br>
<br>
If( !empty( $this->alias['where'] ) ){<br>
$this->sql .= ' where ' . $this->alias['where'];<br>
}<br>
<br>
If( !empty( $this->alias['group'] ) ){<br>
$this->sql .= ' group by ' . $this->alias['group'];<br> }<br>
<br>
if( !empty( $this->alias['order'] ) ){<br>
$this->sql .= ' order by ' . $this->alias['order'];<br>
}<br>
<br>
if( !empty( $this->alias['limit'] ) ){<br>
$this->sql .= ' limit ' . $this->alias['limit'];<br>
}<br>
<br>
}<br>
<br>
//解析添加sql语句<br>
public function ParseAddSql()<br>
{<br>
$this->sql = 'insert into ';<br>
if( empty( $this->alias['table'] ) ){<br>
throw new exception("请用table子句设置添加表");<br>
}else{<br>
<br>
$this->sql .= $this->alias['table'] . ' set ';<br>
}<br>
<br>
return $this->sql;<br>
}<br>
<br>
//解析更新sql语句<br>
public function ParseUpdateSql()<br>
{<br>
$this->sql = 'update ';<br>
if( empty( $this->alias['table'] ) ){<br>
throw new exception("请用table子句设置修改表");<br>
}else{<br>
<br>
$this->sql .= $this->alias['table'] . ' set ';<br>
}<br>
<br>
if( empty( $this->alias['where'] ) ){<br>
throw new exception("更新语句必须有where子句指定条件");<br>
}<br>
<br>
return $this->sql;<br>
}<br>
<br>
//解析删除sql语句<br>
public function ParseDeleteSql()<br>
{<br>
$this->sql = 'delete from ';<br>
if( empty( $this->alias['table'] ) ){<br>
throw new exception("请用table子句设置删除表");<br>
}else{<br>
<br>
$this->sql .= $this->alias['table'];<br>
}<br>
<br>
if( empty( $this->alias['where'] ) ){<br>
throw new exception("删除语句必须有where子句指定条件");<br>
}<br>
<br>
$this->sql .= ' where ' . $this->alias['where'];<br>
<br>
return $this->sql;<br>
}<br>
<br>
<br>
//查询语句<br>
public function select()<br>
{<br>
$this->ParseSelectSql();<br> $row = $this->conn->query( $this->sql )->fetchAll( PDO::FETCH_ASSOC );<br>
$result = [];<br>
<br>
foreach( $row as $key=>$vo ){<br>
<br>
$arrObj = clone $this; //Clone the current object to prevent contamination of this object<br>
$arrObj->data = $vo;<br>
$result[$key] = $arrObj;<br>
unset($arrObj);<br>
}<br>
<br>
Return $ result; <br>
}<br>
<br>
//Query one item<br>
Public function find()<br>
{<br>
$this->ParseSelectSql();<br>
$row = $this->conn->query( $this->sql )->fetch( PDO::FETCH_ASSOC );<br>
<br>
$arrObj = clone $this; //Clone the current object to prevent contamination of this object<br>
$arrObj->data = $row;<br>
$result = $arrObj;<br>
unset($arrObj);<br>
<br>
Return $ result; <br>
}<br>
<br>
//Add data<br>
Public function add($data)<br>
{<br>
if(
throw new exception("Add data add method parameters must be arrays");<br>
}<br>
<br>
$this->ParseAddSql();<br>
foreach( $data as $key=>$vo ){<br>
$this->sql .= " `{$key}` = '" . $vo . "',";<br>
}<br>
<br>
$this->conn->exec( rtrim( $this->sql, ',' ));<br>
return $this->conn->lastInsertId();<br>
}<br>
<br>
//Update statement<br>
Public function update($data)<br>
{<br>
if(
throw new exception("Update data update method parameters must be arrays");<br>
}<br>
<br>
$this->ParseUpdateSql();<br>
foreach( $data as $key=>$vo ){<br>
$this->sql .= " `{$key}` = '" . $vo . "',";<br>
}<br>
<br>
$this->sql = rtrim( $this->sql, ',') . ' where ' . $this->alias['where'];<br>
return $this->conn->exec( $this->sql );<br>
<br>
}<br>
<br>
//Delete statement<br>
Public function delete()<br>
{<br>
$this->ParseDeleteSql();<br>
return $this->conn->exec( $this->sql );<br> }<br>
<br>
//获取查询数据<br>
public function getData()<br>
{<br>
return $this->data;<br>
}<br>
<br>
//获取最后一次执行的sql语句<br>
public function getLastSql()<br>
{<br>
return $this->sql;<br>
}<br>
<br>
public function __get($name)<br>
{<br>
return $this->getData()[$name];<br>
}<br>
<br>
public function offsetExists($offset)<br>
{<br>
if( !isset( $this->getData()[$offset] ) ){<br>
return NULL;<br>
}<br>
}<br>
<br>
public function offsetGet($offset)<br>
{<br>
return $this->getData()[$offset];<br>
}<br>
<br>
public function offsetSet($offset, $value)<br>
{<br>
return $this->data[$offset] = $value;<br>
}<br>
<br>
public function offsetUnset($offset)<br>
{<br>
unset( $this->data[$offset] );<br>
}<br>
}
你可以这么用:$orm = new MyOrm();<br>
<br>
//查询语句<br>
$res = $orm->table('user')->order('id desc')->select();<br>
$res = $orm->table('user')->where("name='test'")->order('id desc')->select();<br>
$res = $orm->table('user')->where(['id' => 1])->order('id desc')->find();<br>
$res = $orm->table('user')->where("age > 20")->group('group by name')->order('id desc')->limit(2)->select();<br>
$res = $orm->table('user')->where("age > 20")->group('group by name')->order('id desc')->limit('2,2')->select();<br>
<br>
//你可以这样处理数据<br>
foreach( $res as $key=>$vo ){<br>
echo $vo->name . '<br>';<br>
}<br>
//也可以这样处理<br>
foreach( $res as $key=>$vo ){<br>
echo $vo['name'] . '<br>';<br>
}<br>
//还可以这样<br>
foreach( $res as $key=>$vo ){<br>
print_r( $vo->getData() ) . '<br>';<br>
}<br>
<br>
//添加数据<br>
$data = [<br>
'name' => 'test1',<br>
'age' => 20,<br>
'password' => '21232f297a57a5a743894a0e4a801fc3',<br>
'salt' => 'domain'<br>
];<br>
$res = $orm->table('user')->add( $data );<br>
<br>
//更新数据<br>
$res = $orm->table('user')->where(['id' => 4])->update( ['name' => 'sdfdsfdsd', 'salt' => '111'] );<br>
<br>
//删除数据<br>
$res = $orm->table('user')->where(['id' => 7, 'id' => 6])->delete();<br>
<br>
//获取执行的sql语句<br>
echo $orm->getLastSql();<br>
<br>
var_dump($res);

主板上SPDIFOUT连接线序最近我遇到了一个问题,就是关于电线的接线顺序。我上网查了一下,有些资料说1、2、4对应的是out、+5V、接地;而另一些资料则说1、2、4对应的是out、接地、+5V。最好的办法是查看你的主板说明书,如果找不到说明书,你可以使用万用表进行测量。首先找到接地,然后就可以确定其他的接线顺序了。主板vdg怎么接线连接主板的VDG接线时,您需要将VGA连接线的一端插入显示器的VGA接口,另一端插入电脑的显卡VGA接口。请注意,不要将其插入主板的VGA接口。完成连接后,您可以

了解Python编程的入门级代码示例Python是一种简单易学,功能强大的编程语言。对于初学者来说,了解Python编程的入门级代码示例是非常重要的。本文将为您提供一些具体的代码示例,帮助您快速入门。打印HelloWorldprint("HelloWorld")这是Python中最简单的代码示例。print()函数用于将指定的内容输出

PHP变量存储程序运行期间的值,对于构建动态且交互式的WEB应用程序至关重要。本文将深入探讨php变量,并通过10个真实的示例展示它们的实际应用。1.存储用户输入$username=$_POST["username"];$passWord=$_POST["password"];此示例从表单提交中提取用户名和密码,并将其存储在变量中以供进一步处理。2.设置配置值$database_host="localhost";$database_username="username";$database_pa

标题:从入门到精通:Go语言中常用数据结构的代码实现数据结构在编程中起着至关重要的作用,它是程序设计的基础。在Go语言中,有许多常用的数据结构,掌握这些数据结构的实现方式对于成为一名优秀的程序员至关重要。本文将介绍Go语言中常用的数据结构,并给出相应的代码示例,帮助读者从入门到精通这些数据结构。1.数组(Array)数组是一种基本的数据结构,是一组相同类型

《Go语言编程实例:Web开发中的代码示例》随着互联网的快速发展,Web开发已经成为各行业中必不可少的一部分。作为一门功能强大且性能优越的编程语言,Go语言在Web开发中越来越受到开发者们的青睐。本文将通过具体的代码示例,介绍如何利用Go语言进行Web开发,让读者能够更好地理解和运用Go语言来构建自己的Web应用。1.简单的HTTP服务器首先,让我们从一个

Java冒泡排序最简单的代码示例冒泡排序是一种常见的排序算法,它的基本思想是通过相邻元素的比较和交换来将待排序序列逐步调整为有序序列。下面是一个简单的Java代码示例,演示了如何实现冒泡排序:publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

随着数字货币的兴起,币圈的世界日益庞大。本文重点介绍币圈中货币种类的多样性,并对全球十大币圈交易所平台进行全面考察。通过分析币种的特性和交易平台的优势,旨在为读者提供全面深入的币圈指南。

如何使用PHP编写库存管理系统中的库存分仓管理功能代码库存管理是许多企业中不可或缺的一部分。对于拥有多个仓库的企业来说,库存分仓管理功能尤为重要。通过合理管理和跟踪库存,企业可以实现不同仓库之间的库存调拨,优化运营成本,改善协同效率。本文将介绍如何使用PHP编写库存分仓管理功能的代码,并为您提供相关的代码示例。一、建立数据库在开始编写库存分仓管理功能的代码之


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Mac version
God-level code editing software (SublimeText3)
