drix47193 2015-10-22 18:51
浏览 45
已采纳

从Zend Framework 1中的应用程序对象获取数据库适配器

I am working on an application written in Zend Framework. I want to create a stand-alone API. I'm copying over from public/index.php, and here is the key code on that:

/** Zend_Application */
require_once 'Zend/Application.php';

// Create application, bootstrap, and run
$application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
$application->bootstrap()->run();

I have copied that over minus the run() directive, and now I'm trying to write db queries.. I've tried:

$application->_connection; //not declared, fails
$application->_db; //same deal
$application->select(); //same deal

I want to run things like:

$result = $application->_some_connection_object_but_where->query( .. );

Can you help me answer the "but where" part? Thanks

--EDITED INFO--

Also, to answer the great response I had on this, I do have a file called /application/Bootstrap.php with a class called:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap

and this method for connection:

protected function _initDb()
{
    $appConfig = new Zend_Config_Ini('../application/configs/application.ini', APPLICATION_ENV);
    Zend_Registry::set('appConfig',$appConfig);

    $dbConfig = new Zend_Config_Ini('../application/configs/db.ini', APPLICATION_ENV);
    Zend_Registry::set('dbConfig',$dbConfig);
    $db = new Zend_Db_Adapter_Pdo_Mysql(array(
        'host' => $dbConfig->database->params->host,
        'username' => $dbConfig->database->params->username,
        'password' => $dbConfig->database->params->password,
        'dbname' => $dbConfig->database->params->dbname,
   ));
    $db->setFetchMode(Zend_Db::FETCH_ASSOC);
    $db->getConnection(); // force a connection... do not wait for 'lazy' connection binding later
    Zend_Registry::set('db',$db);

    Zend_Db_Table::setDefaultAdapter($db);

}
  • 写回答

1条回答 默认 最新

  • doulanyan6455 2015-10-23 08:55
    关注

    If you have bootstrapped your resources in the "standard" way using references in your ./application/config/application.ini file of the form:

    resources.db.adapter = mysql
    resources.db.params.host = localhost
    // etc
    

    then you should be able to get the adapter object from the Zend_Application object using:

    $adapter = $application->getBootstrap()->getResource('db');
    

    Then you can write your db queries against that adapter.

    [Or - even better - feed that adapter into a model that encapsulates/hides the specific db-queries inside a well-defined interface whose implementations will be more testable.]

    Update

    Per request, here is an example of injecting a db-adapter into a model.

    class Application_Model_BaseModel
    {
        protected $db;
    
        public function __construct($db)
        {
            $this->db = $db;
        }
    
    }
    
    class Application_Model_Users extends Application_Model_BaseModel
    {
        public function getVerifiedUsers()
        {
            $select = $this->db->select()
                ->from('users')
                ->where(array(
                    'verified' => true,
                ));
            return $this->db->fetchAll($select);
        }    
    }
    

    Usage would then be:

    $model = new Application_Model_Users($db);
    $users = $model->getVerifiedUsers();
    

    This could be probably tightened further by using Zend_Db_Table_Abstract as the base model, but I intentionally provided a bare-bones example to show what I mean about injecting a db adapter into a model.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化