Zend Framework连接Mysql数据库实例分析
前端之家收集整理的这篇文章主要介绍了
Zend Framework连接Mysql数据库实例分析,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_404_0@本文实例讲述了Zend Framework连接MysqL数据库的方法。分享给大家供大家参考,具体如下:
@H_
404_0@在看这些之前请确保你正确加载了PDO扩展。做法是编辑
PHP.ini 。
手动
增加这两行(前面要没有分号;):
<div class="jb51code">
<pre class="brush:bash;">
extension=
PHP_pdo.dll
extension=
PHPpdoMysqL.dll
@H_
404_0@然后要把extension_dir
@H_
404_0@指向
PHP_pdo.dll及
PHP_pdo_
MysqL.dll所在目录,如
PHP5/ext"
@H_
404_0@OK,let's go..
@H_
404_0@index.
PHP 网站
首页,也是唯一入口
PHP;">
'127.0.0.1','username' => 'root','password' => '123456','dbname' => 'happycms');
$db = Zend_Db::factory('pdo
MysqL',$params);
Zend::register('db',$db);
?>
@H_
404_0@lib/App/Article.
PHP
PHP;">
db = Zend::registry('db');
}
function listAll() {
$result = $this->db->query('SELECT * FROM article');
$rows = $result->fetchAll();
Zend::dump($rows);
}
function listByCategory() {
}
//...省略
}
?>
@H_
404_0@ArticleController.
PHP
view = Zend::registry('view');
$this->article = new App_Article();
}
public function listAllAction() {
$this->article->listAll();
$this->view->title='View Articles';
echo $this->view->render(TPL_DIR.'/tplView.
PHP');
}
function __call($action,$arguments)
{
$this->_redirect('./');
print_r($action);
print_r($arguments);
}
}
?>
@H_
404_0@访问 http://happycms/article/listall
@H_
404_0@得到以下
输出:
array(15) {
["articleid"] => string(1) "1"
["categoryid"] => string(1) "0"
["articletitle"] => string(4) "test"
["articlefromwhere"] => string(3) "sdf"
["articlekeywords"] => string(5) "sdfds"
["articledescription"] => string(4) "test"
["articlebody"] => string(9) "sffsdfsdf"
["authorname"] => string(8) "haohappy"
["authoremail"] => string(11) "s...@df.com"
["issticky"] => string(1) "0"
["isrecommanded"] => string(1) "0"
["includeattachment"] => string(1) "0"
["addtime"] => string(19) "0000-00-00 00:00:00"
["lastedittime"] => string(19) "0000-00-00 00:00:00"
["checktime"] => string(19) "0000-00-00 00:00:00"
}
@H_
404_0@更多关于zend相关
内容感兴趣的读者可查看本站专题:《
》、《》、《》、《》、《》、《》及《PHP常见
数据库操作技巧汇总》
@H_
404_0@希望本文所述对大家基于Zend Framework框架的
PHP程序设计有所帮助。