PHP code example of icymat / orm
1. Go to this page and download the library: Download icymat/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/ */
icymat / orm example snippets
class ExampleEntity extends \IcyMat\ORM\BaseEntity
{
protected static $name = 'table_from_database';
protected $fields = [
'field_1',
'field_2',
'field_3'
];
}
$exampleEntity->set('field_2', $value);
$exampleEntity->get('field_2');