view->render("index.html");---->index.html echo $this->word; application->config.ini [general]db.adapter=PDO_MYSQLdb.con....">

当前位置:  编程技术>php

PHP开源开发框架ZendFramework使用中常见问题说明及解决方案

    来源: 互联网  发布时间:2014-08-26

    本文导语:  MVC 代码书写:控制器代码书写: 代码如下: 控制当中写内容: 代码如下:$this->view->word="ggg";$this->view->render("index.html");---->index.html echo $this->word; application->config.ini [general]db.adapter=PDO_MYSQLdb.config.host=localhostdb.config.username=rootdb.conf...

MVC 代码书写:
控制器代码书写:

代码如下:


控制当中写内容:

代码如下:

$this->view->word="ggg";
$this->view->render("index.html");
---->index.html echo $this->word;

application->config.ini
[general]
db.adapter=PDO_MYSQL
db.config.host=localhost
db.config.username=root
db.config.password=
db.config.dbname=think_zw

配置文件引入到framework里面去

代码如下:

//配置数据库参数,并连接数据库
$config=new Zend_Config_Ini('./application/config/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);

单一入口模式:localhost/index/add/访问index模块下的add方法
function addAction(){}(在IndexController.php)
默认访问为index模块下的index方法

再建立一个模块model里面的message.php

代码如下:


模块实例化:

代码如下:

function indexAction()
{
$message=new message();//实例化数据库类

//获取数据库内容
$this->view->messages=$message->fetchAll()->toArray();

echo $this->view->render('index.phtml');//显示模版
}







*************
修改和删除数据

代码如下:


kk

ll

index.phtml里面加上

代码如下:


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • PHP 框架 PHP Lithium
  • PHP 框架 Pop php
  • PHP框架 PHP Yaf
  • PHP MVC框架 PHP AMP
  • PHP应用框架 PHP Mushroom
  • PHP应用开发框架 PHP Ding
  • PHP框架 Fuel PHP
  • PHP的JavaScript框架 PHP.JS
  • PHP的日志框架 log4php
  • PHP5框架 less PHP
  • PHP框架 PHP-PAPA
  • PHP框架 Banshee PHP
  • PHP的ORM框架 PHP NORM
  • PHP Web服务框架 WSO2 WSF/PHP
  • RESTful PHP框架 Phx
  • PHP开发框架 Yii
  • PHP互操作性框架 PPI
  • PHP开发框架 Radicore
  • 超级负载PHP 开发框架 Xiuno PHP
  • PHP框架 ColaPHP
  • 修改配置真正解决php文件上传大小限制问题(nginx+php)
  • IIS7配置PHP图解(IIS7+PHP_5.2.17/PHP_5.3.5)
  • PHP 5.4.19 和 PHP 5.5.3 发布及下载地址
  • php输入流php://input使用示例(php发送图片流到服务器)
  • 修改配置真正解决php文件上传大小限制问题(apache+php)
  • PHP转换器 HipHop for PHP
  • PHP去除html标签,php标记及css样式代码参考
  • php服务器探针显示php服务器信息
  • PHP 'ext/soap/php_xml.c'不完整修复存在多个任意文件泄露漏洞
  • PHP缓存加速器 Alternative PHP Cache (APC)
  • php通过socket_bind()设置IP地址代码示例




  • 特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3