PHP code example of granadaorm / builder
1. Go to this page and download the library: Download granadaorm/builder 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/ */
granadaorm / builder example snippets
$people = \Myapp\Person::q()
->order_by_updated_at_desc()
->limit(50)
->find_many();
foreach ($people as $person) {
echo $person->representation();
}
BasePerson.php
QueryPerson.php
$base_autoload_folder = __DIR__ . '/models';
spl_autoload_register(function ($classname) {
$nsmodel = explode('\\', $classname);
if (count($nsmodel) > 1) {
$filename = $base_autoload_folder . "/" . $nsmodel[0] . '/' . $nsmodel[1] . ".php";
if (file_exists($filename)) {
if (file_exists($filename)) {