• <i id='7cGNn'><tr id='7cGNn'><dt id='7cGNn'><q id='7cGNn'><span id='7cGNn'><b id='7cGNn'><form id='7cGNn'><ins id='7cGNn'></ins><ul id='7cGNn'></ul><sub id='7cGNn'></sub></form><legend id='7cGNn'></legend><bdo id='7cGNn'><pre id='7cGNn'><center id='7cGNn'></center></pre></bdo></b><th id='7cGNn'></th></span></q></dt></tr></i><div id='7cGNn'><tfoot id='7cGNn'></tfoot><dl id='7cGNn'><fieldset id='7cGNn'></fieldset></dl></div>
  • <tfoot id='7cGNn'></tfoot>
        <bdo id='7cGNn'></bdo><ul id='7cGNn'></ul>

      <small id='7cGNn'></small><noframes id='7cGNn'>

      <legend id='7cGNn'><style id='7cGNn'><dir id='7cGNn'><q id='7cGNn'></q></dir></style></legend>

        Zend_Log in application.ini

        时间:2023-10-02

        <i id='RzmAL'><tr id='RzmAL'><dt id='RzmAL'><q id='RzmAL'><span id='RzmAL'><b id='RzmAL'><form id='RzmAL'><ins id='RzmAL'></ins><ul id='RzmAL'></ul><sub id='RzmAL'></sub></form><legend id='RzmAL'></legend><bdo id='RzmAL'><pre id='RzmAL'><center id='RzmAL'></center></pre></bdo></b><th id='RzmAL'></th></span></q></dt></tr></i><div id='RzmAL'><tfoot id='RzmAL'></tfoot><dl id='RzmAL'><fieldset id='RzmAL'></fieldset></dl></div>
      1. <legend id='RzmAL'><style id='RzmAL'><dir id='RzmAL'><q id='RzmAL'></q></dir></style></legend>
        <tfoot id='RzmAL'></tfoot>
        • <small id='RzmAL'></small><noframes id='RzmAL'>

            <tbody id='RzmAL'></tbody>
          • <bdo id='RzmAL'></bdo><ul id='RzmAL'></ul>

                  本文介绍了Zend_Log in application.ini的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  是否有任何示例如何从 application.ini 设置 Zend 日志的实例?我只找到了一个记录到文件的示例,但我想登录到 SQLITE 数据库表?

                  is there any example how to setup an instance of zend log from application.ini? I have only found an example for logging to an file, but i want to log into an SQLITE database table?

                  Zend 日志资源

                  推荐答案

                  好问题.我找不到从引导程序配置实例化 Zend_Log_Writer_Db 的方法.writer 类需要一个 Zend_Db_Adapter 对象.它不接受字符串.

                  Good question. I can't find a way to instantiate the Zend_Log_Writer_Db from a bootstrap config. The writer class requires a Zend_Db_Adapter object. It doesn't accept a string.

                  采埃孚项目需要进一步开发这个用例.他们甚至没有任何包含数据库编写器的 Zend_Application_Resource_Log 单元测试.

                  The ZF project needs to develop this use case further. They don't even have any unit tests for Zend_Application_Resource_Log that include a Db writer.

                  在那之前我最好的建议是,您的 Bootstrap 类需要在 _initLog() 方法中自定义 Log 资源.

                  The best I can suggest until then is that you Bootstrap class needs to customize the Log resource in an _initLog() method.

                  class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
                  {
                  
                    protected function _initDb()
                    {
                      if ($this->hasPluginResource("db")) {
                        $r = $this->getPluginResource("db");
                        $db = $r->getDbAdapter();
                        Zend_Registry::set("db", $db);
                      }
                    }
                  
                    protected function _initLog()
                    {
                      if ($this->hasPluginResource("log")) {
                        $r = $this->getPluginResource("log");
                        $log = $r->getLog();
                  
                        $db = Zend_Registry::get("db");
                        $writer = new Zend_Log_Writer($db, "log", ...columnMap...);
                        $log->addWriter($writer);
                  
                        Zend_Registry::set("log", $log);
                      }
                    }
                  
                  }
                  

                  这篇关于Zend_Log in application.ini的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Zend_Db:如何通过 SSH 隧道连接到 MySQL 数据库? 下一篇:在 PHP 中使用 jqgrid 上传文件

                  相关文章

                  最新文章

                • <small id='bQcTh'></small><noframes id='bQcTh'>

                • <i id='bQcTh'><tr id='bQcTh'><dt id='bQcTh'><q id='bQcTh'><span id='bQcTh'><b id='bQcTh'><form id='bQcTh'><ins id='bQcTh'></ins><ul id='bQcTh'></ul><sub id='bQcTh'></sub></form><legend id='bQcTh'></legend><bdo id='bQcTh'><pre id='bQcTh'><center id='bQcTh'></center></pre></bdo></b><th id='bQcTh'></th></span></q></dt></tr></i><div id='bQcTh'><tfoot id='bQcTh'></tfoot><dl id='bQcTh'><fieldset id='bQcTh'></fieldset></dl></div>

                  <tfoot id='bQcTh'></tfoot>
                  <legend id='bQcTh'><style id='bQcTh'><dir id='bQcTh'><q id='bQcTh'></q></dir></style></legend>
                    <bdo id='bQcTh'></bdo><ul id='bQcTh'></ul>