Skip to content

Instantly share code, notes, and snippets.

View DvDty's full-sized avatar
🐘

Pavel DvDty

🐘
  • Sofia, Bulgaria
View GitHub Profile
@DvDty
DvDty / simple_orm.php
Created July 26, 2019 20:36
Simple PHP ORM
<?php
abstract class Model
{
public $id;
/** @var PDO */
private $db;
private $fields = [];
private $exists = false;