dev-master
9999999-dev https://github.com/izniburak/easy-crudsimple crud class for php
MIT
The Requires
- php >=5.4.0
sql php crud
Wallogit.com
2017 © Pedro PelĆ”ez
simple crud class for php
composer.json file:, (*2)
{
"require": {
"izniburak/easy-crud": "dev-master"
}
}
after run the install command., (*3)
$ composer install
OR run the following command directly., (*4)
$ composer require izniburak/easy-crud:dev-master
require 'vendor/autoload.php';
$crud = new \buki\easyCrud($pdoObject);
$records = $crud->prepare([
'table' => 'test',
'where' => [
'id = ? AND status = ?', [10, 1]
],
'orderBy' => ['id' => 'desc'],
'limit' => 10
])->all();
var_dump($records);
Documentation coming soon..., (*5)
izniburak's homepage, (*6)
izniburak's twitter, (*7)
MIT Licence, (*8)
simple crud class for php
MIT
sql php crud