PHP code example of edgardmessias / yii2-firebird
1. Go to this page and download the library: Download edgardmessias/yii2-firebird 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/ */
edgardmessias / yii2-firebird example snippets
return [
//....
'components' => [
'db' => [
'class' => 'edgardmessias\db\firebird\Connection',
'dsn' => 'firebird:dbname=localhost:/tmp/TEST.FDB;charset=ISO8859_1',
'username' => 'username',
'password' => 'password',
],
],
];
bash
php composer.phar