興味のある友人にいくつかのアイデアを提供するために、私は自分で簡単な ORM クラスを作成しました。
興味のある友人にいくつかのアイデアを提供するために、私は自分で簡単な ORM クラスを作成しました。 TPさんのアイデアを少し拝借させていただきました。 <?php<br />
/**<br />
* 著者: ニックバイ<br />
*createTime: 2016/11/28 0028 4:00 pm<br />
*/<br />
MyOrm クラスは ArrayAccess を実装します<br />
{<br />
パブリック $host = '127.0.0.1' //データベースアドレス<br />;
Public $dbname = 'test' //データベース名<br />;
Public $user = 'root' //データベースユーザー名<br />;
Public $pwd = 'root' //データベースパスワード<br />;
パブリック $port = '3306' //データベース ポート<br />;
Public $charset = 'utf8' //データベースエンコーディング<br />;
private $conn = null; //データベースリンクリソース<br />
Private $alias = [] //グローバルステートメントパラメータを記録します<br />;
Private $sql // 最後の SQL を保存します<br />
<br />
パブリック関数 __construct()<br />
{<br />
if( is_null( $this->conn )){<br />
<br />
$dsn = "mysql:host=$this->host;dbname=$this->dbname;charset=$this->charset;port=$this->port";<br />
$this->conn = 新しい PDO( $dsn, $this->user, $this->pwd);<br />
}<br />
}<br />
<br />
//フィールドステートメント<br />
パブリック関数フィールド($field)<br />
{<br />
If (! Is_string ($ フィールド)) {<br />
throw newException("フィールドステートメントのパラメータは文字列である必要があります");<br />
}<br />
<br />
$this->alias['field'] = $field;<br />
$これを返します<br />
}<br />
<br />
//テーブルステートメント<br />
パブリック関数テーブル($table)<br />
{<br />
If (! Is_string ($ テーブル)) {<br />
throw newException("テーブルステートメントのパラメータは文字列である必要があります");<br />
}<br />
<br />
$this->alias['table'] = $table;<br />
$これを返します<br />
}<br />
<br />
//where ステートメント<br />
パブリック関数 where($where)<br />
{<br />
$this->alias['where'] = '';<br />
もし(
<br />
foreach( $where as $key=>$vo ){<br />
$this->alias['where'] .= " `$key`" . ';<br>
}<br>
$this->alias['where'] = rtrim( $this->alias['where'], 'and ' );<br>
<br>
}else if( is_string( $where )){<br>
<br>
$this->alias['where'] = $where;<br>
}その他{<br>
<br>throw newException("where ステートメントのパラメータは配列または文字列である必要があります");<br>
}<br>
<br>
$これを返します<br>
}<br>
<br>
// 制限ステートメント<br>
公開機能制限($limit)<br>
{<br>
$this->alias['limit'] = '';<br>
if( is_numeric( $limit )){<br>
$this->alias['limit'] = '0,' .
}else if( is_string( $limit )){<br>
$this->alias['limit'] = $limit;<br>
}その他{<br>
throw newException("limit ステートメントのパラメータは数値または文字列である必要があります");<br>
}<br>
<br>
$これを返します<br>
}<br>
<br>
//注文明細書<br>
パブリック関数オーダー($order)<br>
{<br>
もし(
throw newException("順序ステートメントのパラメータは文字列である必要があります");<br>
}<br>
<br>
$this->alias['order'] = $order;<br>
$これを返します<br>
}<br>
<br>
//グループステートメント<br>
パブリック関数グループ($group)<br>
{<br>
If (! Is_string ($ Group)) {<br>
throw newException("グループステートメントのパラメータは文字列である必要があります");<br>
}<br>
<br>
$this->alias['group'] = $group;<br>
$これを返します<br>
}<br>
<br>
//クエリSQL文を解析します<br>
パブリック関数 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 newException("テーブル句を使用してクエリテーブルを設定してください");<br>
}その他{<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>
$this->sql .= ' グループ化 ' $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 .= ' 制限 ' 。 $this->エイリアス['制限'];<br>
}<br>
<br>
}<br>
<br>
// 解析追加sql语句<br>
パブリック関数ParseAddSql()<br>
{<br>
$this->sql = '挿入 ';<br>
if( empty( $this->alias['table'] ) ){<br>
throw new Exception("句请用table子设置追加表");<br>
}その他{<br>
<br>
$this->sql .= $this->alias['table'] 。 ' セット ';<br>
}<br>
<br>
return $this->sql;<br>
}<br>
<br>
//解析更新sql语句<br>
パブリック関数ParseUpdateSql()<br>
{<br>
$this->sql = '更新 ';<br>
if( empty( $this->alias['table'] ) ){<br>
throw new Exception("句请用table子设置修改表");<br>
}その他{<br>
<br>
$this->sql .= $this->alias['table'] 。 ' セット ';<br>
}<br>
<br>
if( empty( $this->alias['where'] ) ){<br>
throw new Exception("更新语句必须有where子句指定条件");<br>
}<br>
<br>
return $this->sql;<br>
}<br>
<br>
// 解析删除句sql语<br>
パブリック関数ParseDeleteSql()<br>
{<br>
$this->sql = '削除元 ';<br>
if( empty( $this->alias['table'] ) ){<br>
throw new Exception("句请用table子设置删除表");<br>
}その他{<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>
パブリック関数 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 // このオブジェクトの汚染を防ぐために現在のオブジェクトを複製します<br>
$arrObj->data = $vo;<br>
$result[$key] = $arrObj;<br>
unset($arrObj);<br>
}<br>
<br>
$ の結果を返します。
}<br>
<br>
// 1 つの項目をクエリします<br>
パブリック関数 find()<br>
{<br>
$this->ParseSelectSql();<br>
$row = $this->conn->query( $this->sql )->fetch( PDO::FETCH_ASSOC );<br>
<br>
$arrObj = clone $this // このオブジェクトの汚染を防ぐために現在のオブジェクトのクローンを作成します<br>
$arrObj->data = $row;<br>
$result = $arrObj;<br>
unset($arrObj);<br>
<br>
$ の結果を返します。
}<br>
<br>
//データを追加します<br>
パブリック関数 add($data)<br>
{<br>
If (! Is_array ($ data)) {<br>
新しい例外をスローする(「データの追加メソッドのパラメータは配列である必要があります」);<br>
}<br>
<br>
$this->ParseAddSql();<br>
foreach( $data as $key=>$vo ){<br>
$this->sql .= " `{$key}` = '" .
}<br>
<br>
$this->conn->exec( rtrim( $this->sql, ',' ));<br>
return $this->conn->lastInsertId();<br>
}<br>
<br>
//ステートメントを更新します<br>
パブリック関数の更新($data)<br>
{<br>
If (! Is_array ($ data)) {<br>
throw newException("更新データ更新メソッドのパラメータは配列である必要があります");<br>
}<br>
<br>
$this->ParseUpdateSql();<br>
foreach( $data as $key=>$vo ){<br>
$this->sql .= " `{$key}` = '" .
}<br>
<br>
$this->sql = rtrim( $this->sql, ',' ) ' where ' . $this->alias['where'];<br>
return $this->conn->exec( $this->sql );<br>
<br>
}<br>
<br>
// ステートメントを削除します<br>
パブリック関数 delete()<br>
{<br>
$this->ParseDeleteSql();<br>
return $this->conn->exec( $this->sql );<br> }<br>
<br>
//获取查询データ<br>
パブリック関数 getData()<br>
{<br>
$this->データを返す;<br>
}<br>
<br>
//最後に実行した SQL 句を取得します<br>
パブリック関数 getLastSql()<br>
{<br>
return $this->sql;<br>
}<br>
<br>
パブリック関数__get($name)<br>
{<br>
return $this->getData()[$name];<br>
}<br>
<br>
public function offsetExists($offset)<br>
{<br>
if( !isset( $this->getData()[$offset] ) ){<br>
NULL を返します;<br>
}<br>
}<br>
<br>
パブリック関数offsetGet($offset)<br>
{<br>
return $this->getData()[$offset];<br>
}<br>
<br>
パブリック関数offsetSet($offset, $value)<br>
{<br>
return $this->data[$offset] = $value;<br>
}<br>
<br>
パブリック関数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')->制限(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>
「名前」 => 「テスト1」、<br>
「年齢」=> 20、<br>
「パスワード」 => '21232f297a57a5a743894a0e4a801fc3',<br>
「塩」 => 「ドメイン」<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);