1. Go to this page and download the library: Download analogue/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');
/* Start to develop here. Best regards https://php-download.com/ */
analogue / orm example snippets
use Analogue\ORM\Entity;
use Illuminate\Support\Collection;
class Blog extends Entity
{
public function __construct()
{
$this->posts = new Collection;
}
public function addPost(Post $post)
{
$this->posts->push($post);
}
}
class Post extends Entity
{
}
use Analogue\ORM\EntityMap;
class BlogMap extends EntityMap
{
public function posts(Blog $blog)
{
return $this->hasMany($blog, Post::class);
}
}
class PostMap extends EntityMap
{
public function blog(Post $post)
{
return $this->belongsTo($post, Blog::class);
}
}
$blog = new Blog;
$blog->title = "My first blog";
$post = new Post;
$post->title->"My first post";
$blog->addPost($post);
// Only the blog instance need to explicitely stored; Analogue takes care of synchronizing
// related objects behinds the scene.
mapper(Blog::class)->store($blog);
$blog = mapper(Blog::class)->first();
echo $blog->posts->first()->title; // 'My first post'
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.