PHP code example of taro / db-model
1. Go to this page and download the library: Download taro/db-model library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
taro / db-model example snippets
class Post extends Model
{
// フィールド名を protected で定義
protected $title;
protected $body;
// リレーションメソッドを定義
public function relatedComments()
{
return $this->hasMany(Comment::class);
}
}
// モデル と Post が1対1
public function post()
{
return $this->hasOne(Post::class);
}
// モデル と Post が1対多
public function posts()
{
return $this->hasMany(Post::class);
}
// モデル と User が多対1
public function user()
{
return $this->belongsTo(User::class);
}
// モデル と Post が favorites 中間テーブルを介して 多対多
public function favoritePosts()
{
return $this->manyToMany(Post::class , 'favorites');
}
// モデル と Comment が Postモデルを介して 1対多
public function comments()
{
return $this->hasManyThrough(Comment::class, Post::class);
}
// モデル と User が Postモデルを介して 多対1
public function users()
{
return $this->belongsToThrough(User::class, Post::class);
}
$post = new Post;
$post->title = 'title1';
$post->body = 'test';
$post->insert();
$post = new Post();
$data = [
'title'=>'How to cook pizza2',
'content'=>'test create from array'
];
$post->fill($data)->insert();
$post = Post::query()->findById(1);
$post->body = 'updated';
$post->update();
$post = Post::query()->findById(1);
$data = [
'body' => 'updated'
];
$post->fill($data)->update();
$post = Post::query()->findById(1);
$post->delete();
// where(カラム名, 値) 又は、 where(カラム名, oper, 値)
Post::query()->where('title', 'IN', ['test1', 'test2'])
Post::query()->where('id', '1')
// whereIn(カラム名, 値の配列)
Post::query()->whereIn('id', [1,2,3])
// whereBetween (カラム名, min, max)
Post::query()->whereBetween('id', 2, 4)
// orderBy(カラム名, ['DESC' | 'ASC'])
Post::query()->orderBy('id', 'DESC')
// limit(取得数)
Post::query()->limit(2)
// groupBy(カラム名)
Post::query()->groupBy('user_id')
// カラムを選択
Post::query()->select('title','body')
// 複数のモデルを取得
$posts = Post::query()->where('id', '>', '2')->getAll();
// 複数のレコードを配列で取得
$posts = Post::query()->where('id', '>', '2')->getArrayAll();
// 最初のレコードを取得
$posts = Post::query()->where('id', '1')->getFirst();
// モデルクラスから単独で実行できる
$posts = Post::query()->getAll();
// 集計用のメソッド
// count, average, max, min, sum
Post::query()->count();
Post::query()->count('views'); // カラムを指定
$query = Post::query();
// where 句の作成
// WHERE (views > 2) AND (hidden = "public") OR (title = "test3")
$where = new Wh();
$where->add('views', '>', '2');
$where->addAnd('hidden','public');
$where->addOr('title', 'test3');
// where句をクエリに追加
$query->addWhClause($where);
$posts = $query->getAll();
$where = new Wh();
// WHERE (hidden = "public") AND ((views > 2) OR (title = "test3"))
$where->addBlock(
Wh::and(
Wh::block('hidden', 'public'),
Wh::or(
Wh::block('views', '>', '2'),
Wh::block('title', 'test3')
)
)
);
$query2->addWhClause($where);
// getAllの戻り値は、モデルのリストオブジェクト(ObjectList)になります
$posts = Post::query()->where('id', '>', '2')->getAll();
// getArrayAllの戻り値は、配列のリストオブジェクト(ArrayList)になります
$posts = Post::query()->where('id', '>', '2')->getArrayAll();
merge(): ActiveList 同士の結合
orderBy(key, 'asc'): リストの並び替え
orderBy(callback)
pluck(key): リストの各要素の特定キーのみを取得する
filter(condition): リストを条件で絞り込む
shift(): 先頭を取得してリストから取り除く
pop():末尾を取得してリストから取り除く
first(): リストの先頭を取得
last(): リストの末尾を取得
slice(offset, length): 先頭から offset 番目から length 個取り出す
map(callback): 各要素に処理を実行する
ifAny(callback): 条件が true のものがひとつでもあるか
ifAll(callback): すべての要素で条件が true になるか
groupBy(key): key の値でリストをグループ分けする
toArray(): 格納したデータを配列として返す
clone(): リストのクローン(シャローコピー)
// 使用例 Post の id >= 3 のレコードの title を配列で取得
$posts = Post::query()->getAll();
$titles = $posts->filter(function($item) {
return $item->id >= 3;
})->pluck('title');
// paginate(一度に取得するレコード数)
$posts = Post::paginate(10);
$data = $posts->getLinkData();
// 以下、データのフォーマット
$data =[
'routeUrl' => 'http://localhost/posts?key1=value1',
'links' =>
array (
array (
'label' => '最初',
'href' => 'http://localhost/posts?key1=value1?pageNo=0',
),
array (
'label' => '前',
'href' => 'http://localhost/posts?key1=value1?pageNo=1',
),
array (
'label' => 1,
'href' => 'http://localhost/posts?key1=value1?pageNo=0',
),
array (
'label' => 2,
'href' => 'http://localhost/posts?key1=value1?pageNo=1',
),
array (
'label' => 3,
'href' => 'http://localhost/posts?key1=value1?pageNo=2',
'selected' => true,
'disabled' => true,
),
array (
'label' => '次',
'href' => 'http://localhost/posts?key1=value1?pageNo=2',
'disabled' => true,
),
array (
'label' => '最後',
'href' => 'http://localhost/posts?key1=value1?pageNo=2',
'disabled' => true,
),
),
];
$posts = Post::paginate(10);
$posts->setTemplate(new CustomLinks);
// 直接SQL文を実行
$sql = 'SELECT * FROM posts WHERE title = :title';
$query = DirectSql::query()->prepareSql($sql);
$query->bindParam(':title', 'my first post');
$results = $query->runSql();
// よりORM的な記述方法
// レコードの取得
$results = DirectSql::query()
->table('posts')
->select('title','body')
->where('id','>=', 2)
->orderBy('create_date')
->limit(10)
->getAsModels(Post::class);
// 更新
DirectSql::query()
->table('posts')
->where('title', 'test')
->update([
'title' => 'test 1',
'body' => 'test post 1'
]);
// 削除
DirectSql::query()
->table('posts')
->where('id', 5)
->delete();
// 関連モデルのデータを取得
$user = $post->user->getFirst();
$posts = $user->posts->getAll();
// eagerloading N+1問題の解決
// eagerLoad(['リレーション名'])
User::query()->eagerLoad(['tasks'])->getAll();
$tasks = $user->tasks;
public function favoritePosts()
{
return $this->manyToMany(Post::class , 'favorites');
}
// insertPivot(関連テーブルのid, [独自のカラムに登録するデータを配列形式で])
$user->favoritePosts()->insertPivot($postId, ['star'=>$star]);
// updatePivot(関連テーブルのid, [独自のカラムに更新するデータを配列形式で])
$user->favoritePosts()->updatePivot($postId, ['star'=>$star]);
// deletePivot(関連テーブルのid)
$user->favoritePosts()->deletePivot($postId);
// connections 以下に、接続名をキーとして、接続情報を指定する
return [
'default'=>'mysql', // デフォルト接続先
'connections' => [
'mysql'=>[
'driver'=>'mysql',
'host'=>'localhost',
'user'=>'root',
'password'=> env('DB_PASSWORD'), // .env ファイルのデータを指定
'dbname'=>'tasksdb',
],
'pgsql'=>[
'driver'=>'pgsql',
'host'=>'localhost',
'user'=>'postgres',
'password'=>'password',
'dbname'=>'MyDB',
'schema'=>'public',
'port'=>5433,
],
// 例では、プロジェクトルート/database 直下の database.sqlite ファイルを読み込む
'sqlite'=>[
'driver'=>'sqlite',
'dsn'=>'sqlite:' . FileHandler::sqlitePath(),
],
]
];
use Taro\DBModel\DB\DB;
// 引数として利用する接続名を渡す(省略すると、database.phpに記載したdefault値が使われる)
$db = DB::start('mysql', true);
// 接続を閉じる
DB::stopGlobal();
// トランザクション開始
DB::beginTrans();
// ロールバック
DB::rollback();
// コミット
DB::commit();
use Taro\DBModel\Schema\Database;
// データベースを作成
Database::create('データベース名');
// データベースを削除
Database::dropIfExists('データベース名');
use Taro\DBModel\Schema\Schema;
use Taro\DBModel\Schema\MySql\MySqlTable;
// use Taro\DBModel\Schema\PostgreSql\PostgreSqlTable;
// use Taro\DBModel\Schema\Sqlite\SqliteTable;
Schema::createTable('test', function(MySqlTable $table){
$table->addColumn('id','int')->unsigned()->primary();
$table->addColumn('content','text')->nullable();
$table->addColumn('status','string')->length(5)->default('good');
$table->addColumn('user_id','int')->unsigned();
$table->addUnique('content', 'status');
$table->addForeign('user_id')->references('users', 'id')->onDelete('CASCADE');
});
// データベースによっては、一部のメソッドが利用できません。(例:postgresqlでは、unsigned() 利用不可)
// test テーブルを取得
$table = Schema::getTable('test');
// 変更内容を記述
$table->addColumn('post_id','int');
$table->changeColumn('status')->default(0);
$table->addForeign('post_id')->references('posts','id')->onDelete('cascade')->name('FK1');
$table->dropForeign('fk_test2_user_id_users_id');
$table->dropIndexByColumns('content','status');
$table->addIndex('status')->name('INDEX1');
$table->dropColumn('content');
// 最後に変更クエリを実行
Schema::alterTable($table);
// 取得したテーブルを削除
$table = Schema::getTable('test');
Schema::dropTable($table);
// test テーブルを削除
Schema::dropTableIfExists('test');
use Taro\DBModel\Schema\Schema;
use Taro\DBModel\Schema\MySql\MySqlTable;
// use Taro\DBModel\Schema\PostgreSql\PostgreSqlTable;
// use Taro\DBModel\Schema\Sqlite\SqliteTable;
Schema::saveTable('test', function(MySqlTable $table){
$table->addColumn('id','int')->primary();
$table->addColumn('content','text')->nullable();
$table->addColumn('status','string')->length(5)->default('good');
$table->addUnique('content', 'status');
});