中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

zend framework如何配置操作數據庫

發布時間:2021-10-18 09:39:08 來源:億速云 閱讀:111 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“zend framework如何配置操作數據庫”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“zend framework如何配置操作數據庫”這篇文章吧。

zendframework項目環境搭建后,看了下zend framework配置操作數據庫,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數據庫來測試下,就用wp_posts表來測試吧:
首先模型models建立Wp_posts.php

復制代碼 代碼如下:


<?php
class Wp_posts extends Zend_Db_Table{
protected $_name = 'Wp_posts';
protected $_primary = 'ID';
}
?>


控制器controller下面建立IndexController.php

復制代碼 代碼如下:


<?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

復制代碼 代碼如下:


<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>

以上是“zend framework如何配置操作數據庫”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永春县| 嵩明县| 睢宁县| 丹凤县| 武陟县| 泌阳县| 康马县| 宜良县| 壶关县| 玉田县| 同德县| 金塔县| 洪湖市| 朔州市| 汝城县| 阳曲县| 三亚市| 迁西县| 都昌县| 琼海市| 桐梓县| 榆中县| 嘉祥县| 平果县| 额尔古纳市| 定远县| 桂平市| 汨罗市| 寻乌县| 太湖县| 方城县| 凤阳县| 余干县| 青浦区| 台北县| 定边县| 当阳市| 海林市| 佛学| 正安县| 南汇区|