中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

zend framework配置操作數(shù)據(jù)庫實例分析

zendframework項目環(huán)境搭建后,看了下zend framework配置操作數(shù)據(jù)庫,php教程如下:
在application/configs的文件下建立一個config.ini文件
配置信息如下
[general]
db.adapter=PDO_MYSQL
db.config.host=localhost/IParess
db.config.username=username
db.config.password=password
db.config.dbname=databasename
2、
在pulibc 目錄的index.php頁面中
/** Zend_Application */
require_once 'Zend/Application.php';
的下面插入
//set the datase config
require_once 'Zend/Config/Ini.php';
require_once 'Zend/Registry.php';
require_once 'Zend/Db.php';
require_once 'Zend/Db/Table.php';
$config=new Zend_Config_Ini('./../application/configs/config.ini',null, true);
Zend_Registry::set('config',$config);
$dbAdapter=Zend_Db::factory($config->general->db->adapter,$config->general->db->config->toArray());
$dbAdapter->query('SET NAMES UTF8');
Zend_Db_Table::setDefaultAdapter($dbAdapter);
Zend_Registry::set('dbAdapter',$dbAdapter);
就此,我就用我的本地wordpress數(shù)據(jù)庫來測試下,就用wp_posts表來測試吧:
首先模型models建立Wp_posts.php
復(fù)制代碼 代碼如下:
<?php
class Wp_posts extends Zend_Db_Table{
protected $_name = 'Wp_posts';
protected $_primary = 'ID';
}
?>

控制器controller下面建立IndexController.php
復(fù)制代碼 代碼如下:
<?php
require_once APPLICATION_PATH.'/models/Wp_posts.php';
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$con = new Wp_posts();
$res = $con->fetchAll()->toArray();
$this->view->res = $res;
$this->render("index");
}
}

在views/scripts/index/ 建立視圖:index.phtml
復(fù)制代碼 代碼如下:
<html>
<head>
<title>this is for test</title>
</head>
<body>
<table>
<?php foreach ($this->res as $news){?>
<tr>
<td><?php echo $news['id']?></td>
<td><?php echo $news['post_title']?></td>
<td><?php echo $news['post_date']?> </td>
</tr>
<?php }?>
</table>
</body>
</html>

ok啦,瀏覽器顯示:
zend framework配置操作數(shù)據(jù)庫

php技術(shù)zend framework配置操作數(shù)據(jù)庫實例分析,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 亚洲精品一区二区 | 一级特黄网站 | 中文字幕中文字幕 | 免费视频中文字幕 | 91精品一区二区三区久久久久久 | 五月激情六月婷婷 | 欧美人人 | 日韩视频中文字幕 | 国产精品成人一区二区三区 | 国产色婷婷精品综合在线手机播放 | 日韩一区二区三区在线播放 | 日韩国产一区二区三区 | 一区在线视频 | 亚洲乱码一区二区三区在线观看 | 国产xxx在线观看 | 91av视频在线观看 | 日本久草 | 亚洲综合久久久 | 91se在线| 国产一区二区三区在线看 | 天天干天天爽 | 亚洲一区视频在线 | 亚洲在线久久 | 国产一区二区三区在线看 | 欧美日韩精品久久久免费观看 | 国产分类视频 | av一区二区在线观看 | 亚洲精品久久嫩草网站秘色 | 亚洲精品一区二区冲田杏梨 | 欧洲精品码一区二区三区免费看 | 中文字幕亚洲区 | 91大片| 中文字幕久久精品 | 欧美精品日韩 | 久久精品一 | 国产乱码精品一区二区三区五月婷 | 91麻豆精品一区二区三区 | 在线视频一区二区三区 | 五十女人一级毛片 | 成人av在线大片 | 国产精品黄色 |