900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > zend framework配置操作数据库实例分析【PHP】

zend framework配置操作数据库实例分析【PHP】

时间:2023-11-24 18:02:00

相关推荐

zend framework配置操作数据库实例分析【PHP】

后端开发|php教程

zendframework,操作数据库

后端开发-php教程

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

h站源码,vscode使用教程,ubuntu 密码,tomcat 集群,sqlite 事务,推广网页设计,数据库 租用,万网服务器,jquery 插件安装,react 前端框架,爬虫登录,开发php,郑州seo优化,springboot最新版本,点击a标签div后变色,网站在线客服,个人网页设计模板,模板库,官网后台 如何删除内容,id怎么让页面竖直排列,asp仓库管理系统,vc窗口程序lzw

<?php

class Wp_posts extends Zend_Db_Table{

protected $_name = Wp_posts;

protected $_primary = ID;

}

?>

控制器controller下面建立IndexController.php

PHP餐饮源码,w7 ubuntu,tomcat用着用着闪退,爬虫和webscraper,王者卡密授权php,黄南SEOlzw

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

tree源码,Ubuntu灰屏卡住,tomcat解压版无法登录,爬虫内容搜索,判断学生星座php代码,seo的名词解释seo教程lzw

this is for test

ok啦,浏览器显示:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。