PHP code example of wcatron / mysql-db-framework
1. Go to this page and download the library: Download wcatron/mysql-db-framework 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/ */
wcatron / mysql-db-framework example snippets
class Your Class extends Row {
/** @var LinkedObject */
var $linkedObject;
const TABLE = "table";
const ID_COLUMN = "table_id";
function __construct() {
$this->setObjectForKey(LinkedObjectClass::class, 'linked_id', 'linkedObject');
}
function toRow() {
$row = parent::toRow();
// ... Add your fields to the row.
return $row;
}
function fromRow($row) {
parent::fromRow($row);
// ... Set your fields.
}
}