91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

二连浩特市| 宾川县| 安图县| 合江县| 海口市| 红原县| 建始县| 鄂伦春自治旗| 涞水县| 安塞县| 四会市| 特克斯县| 中方县| 班玛县| 邢台县| 邓州市| 佛山市| 澄城县| 南郑县| 青海省| 出国| 读书| 千阳县| 安西县| 陆河县| 南澳县| 建宁县| 晋州市| 麦盖提县| 内江市| 衡山县| 闽侯县| 云霄县| 尉犁县| 大方县| 穆棱市| 津南区| 吉首市| 绥江县| 尤溪县| 太康县|