neos / data
Data componentes (configuration, databases, etc)
dev-master
2014-04-17 05:59 UTC
Requires
- php: >=5.4.0
Suggests
- neos/start: Basic starter for PHP web projects
This package is not auto-updated.
Last update: 2024-10-26 14:27:29 UTC
README
Config for Start PHP
[2014/01/30] add data base access point by PDO.
Examples
Composer install:
Add this in your composer.json:
"require": {
"neos/data": "dev-master"
}
Now, type in terminal:
$ composer update
Optional condition to make things easier!
Type it in your index.php or bootstrap file:
class_alias('Neos\Data\Config', 'o');
class_alias('Neos\Data\Conn', 'DB');
Or, in class with namespaces, type (in top):
use Neos\Data\Config as o;
use Neos\Data\Conn as DB;
Configurations
//loading config file
o::load('path/to/config.ini');
get and set config itens
//simple get node
print_r(o::item());
//get item
print_r(o::get('item'));
//set new value
o::set('item', [mixed] value);
saving the configuration file
o::save();
//or
o::save('path/to/copy/config.ini');
Data Base
$value = 01;
$db = (new DB())->query('SELECT * FROM Table WHERE FielN = :value', ['value'=>$value]);
//Dump
print_r($db->getLine(0));
Setting Alias for a connection database
in Config.ini
[db]
default = "dev";
dev[type] = "mysql";
dev[host] = "localhost";
dev[user] = "user";
dev[password] = "*******";
dev[database] = "database";
dev[charset] = "utf8";
other[type] = "sqlite";
other[database] = PPHP"app.db";
PHP script
$db = new DB(); //connecting in a default database (dev)
//or
$db = DB('other'); //for connect in 'other' (sqlite)