1. Go to this page and download the library: Download mrmanchot/miniorm 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/ */
### Create
$firstCharacter = new miniOrm\Obj('character');
$firstCharacter->name = 'Conan';
$firstCharacter->damage = 10;
$firstCharacter->insert();
# Can use hydrate() to set multiple fields
$secondCharacter = new miniOrm\Obj('character');
$secondCharacter->hydrate(array('name' => 'Hulk', 'damage' => 12));
$secondCharacter->insert();
# Can do all in one method
$thirdCharacter = miniOrm\Obj::create(
'character',
array('name' => 'Spiderman', 'damage' => 1)
);
### Update
$conan->damage = 13;
$conan->update(); // Can use too save() : update() if already exist, else insert()
### Delete
$firstCharacter->delete();
class Character extends miniOrm\Obj {
# Define your database name
protected static $tableStatic = 'character';
# Can define relation table, load the Race object for the id_race field
public $relations = array(
array('obj' => 'race', 'field' => 'id_race')
);
# Extends 'set' functions : call set_damage() ( 'set_' + 'damage')
public function set_damage($damage) {
switch ($this->race->name) {
case 'Orc':
$maxDamage = 10;
break;
case 'Human':
$maxDamage = 8;
break;
default: $maxDamage = 20;
}
if($damage > $maxDamage)
$damage = $maxDamage;
return $damage;
}
}
$hulk = Character::load(2);
$hulk->id_race = 2;
# Give you have access to $secondCharacter->race as an Obj
$hulk->getRelations();
# Call before the Character set_damage() method
$hulk->damage = 12;
$hulk->update();
# Will return : 'Hulk (Human) : 8'
echo $hulk->name.' ('.$hulk->race->name.') : '.$hulk->damage.'<br/>';
### Get an access to your database connection
$db = miniOrm\Db::inst();
### Insert, update, delete and count
$db->insert('character', array('name' => 'Wolverine', 'damage' => 1));
$db->update('character', array('damage' => 12), array('name="Wolverine"') );
$db->delete('character', array('name="Wolverine"') );
$db->count('character', array('damage > 10'));
### Select shortcuts :
# Return a field
$damage = $db->getValue('damage', 'character', array('name = "Wolverine"'));
# Return a row
$character = $db->getRow('*', 'character', array('id_character = 1'));
# Return an array
$characters = $db->getArray(
'name, damage',
'character',
'damage > 5',
NULL,
'damage DESC'
);
# Return an array of the value (in example : id_character)
$charactersIds = $db->getValueArray(
'id_character',
'character',
'damage > 5'
);
# Freeze option permit to add to cache your database configuration.
# Once activated, you can't access to new table dynamically : just active it in production.
define('_MO_FREEZE_', true); // Default : false
# Display MySQL errors
define('_MO_DEBUG_', false); // Default : true
# Define the cache dir
define('_MO_CACHE_DIR_', '/var/www/mycachedir/'); // Default : miniOrm/cache
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.