Home >Backend Development >PHP Tutorial >zendframework的DB连接使用,该如何解决

zendframework的DB连接使用,该如何解决

WBOY
WBOYOriginal
2016-06-13 11:45:54844browse

zendframework的DB连接使用
现在我想实现的是,初次登陆时,就进行DB连接,然后以后再读取数据库的时候就不用再连接了,Zend_Registry是怎么使用的。
求救!!!!谢谢
------解决方案--------------------
查查zend framework手册
参考资料
http://blog.csdn.net/cfchengfei002/article/details/7354153
------解决方案--------------------

<br />config.ini<br />[general]<br />db.adapter=PDO_MYSQL<br />db.config.host=localhost<br />db.config.username=root<br />db.config.password=123456<br />db.config.dbname=test<br /><br />$config=new Zend_Config_Ini('./application/config/config.ini',null, true);<br />Zend_Registry::set('config',$config);<br />$db=Zend_Db::factory($config->general->db->adapter,$config->general->db->config->toArray());<br />$db->query('SET NAMES UTF8');<br />Zend_Db_Table::setDefaultAdapter($db);<br />Zend_Registry::set('db',$db);<br /><br /><br />

------解决方案--------------------
你想用Zend_Registry实现这个是不行的。因为这个只在一次请求内有效,你要实现登录 保存数据之类的 老实用session吧

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn