Heim  >  Artikel  >  Backend-Entwicklung  >  用zend framework连接配置数据库出错(根据韩顺平老师讲的课程来的)

用zend framework连接配置数据库出错(根据韩顺平老师讲的课程来的)

WBOY
WBOYOriginal
2016-06-23 13:25:29853Durchsuche

我在application/configs/application.ini是这样配置的
[mysql]
db.adapter = "PDO_MYSQL"
db.params.host = "localhost"
db.params.username = "root"
db.params.password = "123456"
db.params.dbname = "votesys"

我重新创建了一个BaseController类
class BaseController extends Zend_Controller_Action{
  public function init(){
         $url = constant("APPLICATION_PATH").DIRECTORY_SEPARATOR."configs".DIRECTORY_SEPARATOR.'application.ini;
        $dbconfig=new Zend_Config_Ini($url,"mysql");
        $db= Zend_Db::factory($dbconfig->db);
       $db->query("SET NAMES 'utf8'");
       Zend_Db_Table::setDefaultAdapter($db);
    }
}
其中登录页LoginController 继承 BaseController,
但是在运行的时候页面抛异常 在  $db= Zend_Db::factory($dbconfig->db); $dbconfig->db 为NULL。Adapter name must be specified in a string.

在视频中老师是可以正常连接的,但是为什么到我这里就失败了,跪求大神指点解答,谢谢


回复讨论(解决方案)

配置中的双引号都去掉试试

我想问你是用的什么框架

我想问你是用的什么框架



我想问你是用的什么框架



我想问你是用的什么框架

 
zend

配置中的双引号都去掉试试

已经解决了,谢谢
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn