PHP code example of robertasproniu / php-simple-db-orm
1. Go to this page and download the library: Download robertasproniu/php-simple-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');
/* Start to develop here. Best regards https://php-download.com/ */
robertasproniu / php-simple-db-orm example snippets
use SimpleDataBaseOrm\Database;
use SimpleDataBaseOrm\DatabaseConnection;
use SimpleDataBaseOrm\DatabaseConfiguration;
$configuration = [
'default' => 'default',
'connections' => [
'default' => [
'driver' => 'mysql',
'hostname' => 'database_hostname',
'username' => 'database_username',
'password' => 'database_password',
'database' => 'database_name'
],
// optional can have multiple databases
'remote' => [
'driver' => 'mysql',
'hostname' => 'database_hostname',
'username' => 'database_username',
'password' => 'database_password',
'database' => 'database_name'
]
]
]
$dbConfiguration = new DatabaseConfiguration($configuration); // OR $dbConfiguration = new DatabaseConfiguration("path/to/database_cfg.php"); "path/to/database_cfg.php" should return an array
$database = new Database(new DatabaseConnection, $dbConfiguration);