当前位置:Gxlcms > PHP教程 > 在ZendFramework中配置数据库参数

在ZendFramework中配置数据库参数

时间:2021-07-01 10:21:17 帮助过:3人阅读

在Zend Framework中配置数据库参数
  1. 我是用zend studio 7.2.1建立的zend framework project
  2. 也就是说我的框架是由zend stduio7.2.1 帮我建立了文件路径等信息的
  3. 下面讲讲如何在建立好的zend framework project中配置mysql数据库信息
  4. 1、
  5. 在application/configs的文件下建立一个config.ini文件
  6. 配置信息如下:
  7. [general]
  8. db.adapter=PDO_MYSQL
  9. db.config.host=localhost/IParess
  10. db.config.username=username
  11. db.config.password=password
  12. db.config.dbname=databasename
  13. 2、
  14. 在pulibc 目录的index.php页面中
  15. /** Zend_Application */
  16. require_once 'Zend/Application.php';
  17. 的下面插入
  18. //set the datase config
  19. require_once 'Zend/Config/Ini.php';
  20. require_once 'Zend/Registry.php';
  21. require_once 'Zend/Db.php';
  22. require_once 'Zend/Db/Table.php';
  23. $config=new Zend_Config_Ini('./../application/configs/config.ini',null, true);
  24. Zend_Registry::set('config',$config);
  25. $dbAdapter=Zend_Db::factory($config->general->db->adapter,$config->general->db->config->toArray());
  26. $dbAdapter->query('SET NAMES UTF8');
  27. Zend_Db_Table::setDefaultAdapter($dbAdapter);
  28. Zend_Registry::set('dbAdapter',$dbAdapter);

人气教程排行