简体   繁体   中英

Zend Framework - Bootstrapping the database connection

For my current project, I want to dynamically load routes from a database. For this to work I need to fetch these results before the actual controllers are loaded (ofcourse).

I want to accomplish this by adding the results to the bootstrap. However, every tutorial I tried on this subject (the very few) didn't work.

What people suggested was to call

$this->bootstrap('db');

However, this resource doesn't seem to exist.

I have the db resource in my application.ini.

Anything that could make this work?

Thanks alot!

You'll want something like this in your Bootstrap class

public function _initDynamicRoutes()
{
    // bootstrap FrontController resource
    $this->bootstrap('frontController');

    // bootstrap DB resource
    $this->bootstrap('db');

    // get the router from the front controller
    $router = $this->getResource('frontController')->getRouter();

    // if you need the Zend_Db resource for direct calls...
    $db = $this->getResource('db');

    // fetch route data, add to $router
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM