当前位置:首页 > PHP教程 > Zend > 列表

Zend Framework连接Mysql数据库实例分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-18 20:16:07 浏览: 评论:0 

这篇文章主要介绍了Zend Framework连接Mysql数据库的方法,以完整实例形式分析了Zend Framework连接MySQL数据库的具体步骤与相关实现技巧,需要的朋友可以参考下.

本文实例讲述了Zend Framework连接Mysql数据库的方法,分享给大家供大家参考,具体如下:

在看这些之前请确保你正确加载了PDO扩展。做法是编辑php.ini 。

手动增加这两行(前面要没有分号;):

extension=php_pdo.dll

extension=php_pdo_mysql.dll

然后要把extension_dir

指向php_pdo.dll及php_pdo_mysql.dll所在目录,如

extension_dir = "C:/php5/ext"

OK,let's go..

index.php 网站首页,也是唯一入口

  1. <?php 
  2. //...省略 
  3. $params = array ('host'   => '127.0.0.1'
  4.          'username' => 'root'
  5.          'password' => '123456'
  6.          'dbname'  => 'happycms'); 
  7. $db = Zend_Db::factory('pdoMysql'$params); 
  8. Zend::register('db'$db); 
  9. ?> 

lib/App/Article.php

  1. <?php 
  2. class App_Article { 
  3.     private $db
  4.     function App_Article() { 
  5.         $this->db = Zend::registry('db'); 
  6.     } 
  7.     function listAll() { 
  8.         $result = $this->db->query('SELECT * FROM article'); 
  9.         $rows = $result->fetchAll(); 
  10.         Zend::dump($rows); 
  11.     } 
  12.     function listByCategory() { 
  13.     } 
  14.     //...省略 
  15. ?> 

ArticleController.php

  1. class articleController extends Zend_Controller_Action { 
  2.   private $view
  3.   private $article
  4.   function __c****truct() { 
  5.     $this->view = Zend::registry('view'); 
  6.     $this->article = new App_Article(); 
  7.   } 
  8.   public function listAllAction() { 
  9.     $this->article->listAll(); 
  10.     $this->view->title='View Articles'
  11.     echo $this->view->render(TPL_DIR.'/tplView.php'); 
  12.   } 
  13.   function __call($action$arguments
  14.   { 
  15.     $this->_redirect('./'); 
  16.     print_r($action); 
  17.     print_r($arguments); 
  18.   } 
  19. ?> 

访问 http://happycms/article/listall

得到以下输出:

  1. array(1) { 
  2.  [0] => array(15) { 
  3.   ["articleid"] => string(1) "1" 
  4.   ["categoryid"] => string(1) "0" 
  5.   ["articletitle"] => string(4) "test" 
  6.   ["articlefromwhere"] => string(3) "sdf" 
  7.   ["articlekeywords"] => string(5) "sdfds" 
  8.   ["articledescription"] => string(4) "test" 
  9.   ["articlebody"] => string(9) "sffsdfsdf" 
  10.   ["authorname"] => string(8) "haohappy" 
  11.   ["authoremail"] => string(11) "s...@df.com" 
  12.   ["issticky"] => string(1) "0" 
  13.   ["isrecommanded"] => string(1) "0" 
  14.   ["includeattachment"] => string(1) "0" 
  15.   ["addtime"] => string(19) "0000-00-00 00:00:00" 
  16.   ["lastedittime"] => string(19) "0000-00-00 00:00:00" 
  17.   ["checktime"] => string(19) "0000-00-00 00:00:00" 
  18.  }

Tags: Framework Zend连接Mysql

分享到: