<?php |
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap |
{ |
function __construct( $app ) |
{ |
parent::__construct( $app ); |
|
$url = constant( 'APPLICATION_PATH' ) . DIRECTORY_SEPARATOR . 'configs' . DIRECTORY_SEPARATOR . 'config.ini' ; |
|
$dbconfig = new Zend_Config_Ini( $url , null, true); |
|
$db = Zend_Db::factory( $dbconfig ->general->db->adapter, $dbconfig ->general->db->params->toArray()); |
|
// var_dump($db); |
|
$db ->query( 'SET NAMES UTF8' ); |
|
Zend_Db_Table::setDefaultAdapter( $db ); |
|
} |
|
} |
?> |