PHP code example of devweyes / db-orm
1. Go to this page and download the library: Download devweyes/db-orm 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' );
devweyes / db-orm example snippets
class Model extends \Jcsp \Orm \Eloquent \Model
declare (strict_types=1 );
namespace App \Model \Entity ;
use Swoft \Orm \Annotation \Mapping \HasOne ;
use Swoft \Orm \Annotation \Mapping \RelationPassive ;
use Swoft \Db \Eloquent \Model ;
class User extends Model
{
private $roles;
public function setRoles ($roles)
{
$this ->roles = $roles;
}
public function getRoles ()
{
return $this ->roles;
}
}
declare (strict_types=1 );
namespace App \Model \Entity ;
use Swoft \Orm \Annotation \Mapping \HasMany ;
use Swoft \Orm \Annotation \Mapping \RelationPassive ;
use Swoft \Db \Eloquent \Model ;
class User extends Model
{
private $roles;
public function setRoles ($roles)
{
$this ->roles = $roles;
}
public function getRoles ()
{
return $this ->roles;
}
}
declare (strict_types=1 );
namespace App \Model \Entity ;
use Swoft \Orm \Annotation \Mapping \BelongsTo ;
use Swoft \Orm \Annotation \Mapping \RelationPassive ;
use Swoft \Db \Eloquent \Model ;
class Role extends Model
{
private $users;
public function setUsers ($users)
{
$this ->users = $users;
}
public function getUsers ()
{
return $this ->users;
}
}
declare (strict_types=1 );
namespace App \Model \Entity ;
use Swoft \Orm \Annotation \Mapping \BelongsToMany ;
use Swoft \Orm \Annotation \Mapping \RelationPassive ;
class User extends Model
{
private $roles;
public function setRoles ($roles)
{
$this ->roles = $roles;
}
public function getRoles ()
{
return $this ->roles;
}
}
$posts = App\Post::has('comments' )->get();
$posts = App\Post::has('comments' , '>=' , 3 )->get();
$posts = App\Post::has('comments.votes' )->get();
$posts = App\Post::whereHas('comments' , function ($query) {
$query->where('content' , 'like' , 'foo%' );
})->get();
$books = App\Book::with('author' )->get();
foreach ($books as $book) {
echo $book->getAuthor()->getName;
}
$books = App\Book::with('author.contacts' )->get();
foreach ($books as $book) {
echo $book->getAuthor()->getContacts()->getName;
}
$users = App\Book::with(['author' => function ($query) {
$query->where('name' , '=' , '%tom%' )
->select('id' ,'name' )
->orderBy('id' );
}])->get();
$books = App\Book::all();
if ($someCondition) {
$books->load('author' , 'publisher' );
}
$books->load(['author' => function ($query) {
$query->orderBy('published_date' , 'asc' );
}]);