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

2015-01-24信息快讯网

Zend Framework(简写ZF)是由 Zend 公司支持开发的完全基于 PHP5 的开源PHP开发框架,可用于开发 Web 程序和服务,ZF采用 MVC(ModelCView-Controller) 架构模式来分离应用程序中不同的部分方便程序的开发和维护。

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

<?php
class IndexController extends Zend_Controller_Action
{
function init()
{
$this->registry = Zend_Registry::getInstance();
$this->view = $this->registry['view'];
$this->view->baseUrl = $this->_request->getBaseUrl();

} function indexAction() { $this->view->word=" I love spurs";

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

} function addAction(){ //如果是POST过来的值.就增加.否则就显示增加页面

} } ?>

控制当中写内容:

$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

<?php
class Message extends Zend_Db_Table
{
protected $_name ="message";
protected $_primary = 'id';
}
?> 

模块实例化:

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

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

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

<?foreach($this->messages as $message): ?> <tr> <th><?php echo $message['title']; ?></th> <td><?php echo $message['content']; ?></td> </tr> <?endforeach; ?>

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

<?php if(2==2):?>
kk
<?php else:?>
ll
<?php endif;?>

index.phtml里面加上

<a href="<?php echo $this->baseUrl?>/index/exit">编辑</a>
<a href="<?php echo $this->baseUrl?>/index/delete">删除</a>

添加一个新的方法:edit.phtml

function editAction(){

$message = new Message(); $db = $message->getAdapter();

if(strtolower($_SERVER['REQUEST_METHOD'])=='post'){ $id = $this->_request->getPost('id'); $cid = $this->_request->getPost('cid'); $title = $this->_request->getPost('title');

$set = array( 'cid'=>$cid, 'title'=>$title ); $where = $db->quoteInto('id = ?',$id); //更新数据 $message->update($set,$where); unset($set); echo '修改数据成功!<a href="'.$this->view->baseUrl.'/index/index/">返回</a>'; }else{ $id = $this->_request->getParam('id'); $this->view->messages = $message->fetchAll('id='.$id)->toArray(); echo $this->view->render('edit.phtml'); } }

function delAction(){ $message = new Message(); $id = (int)$this->_request->getParam('id');

if($id > 0){ $where = 'id = ' . $id; $message->delete($where); } echo '删除数据成功!<a href="'.$this->view->baseUrl.'/index/index/">返回</a>'; }

异常出现:

Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (index.php)' in

解决办法:在index.php中的

$frontController =Zend_Controller_Front::getInstance();后加上
$frontController->setParam('useDefaultControllerAlways', true);

*******
id/3 等于以前的?id=3

php使用ZipArchive提示Fatal error: Class ZipArchive not found in的解决方法
PHP has encountered a Stack overflow问题解决方法
为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法
set_exception_handler函数在ThinkPHP中的用法
php使用fopen创建utf8编码文件的方法
推荐几款用 Sublime Text 开发 Laravel 所用到的插件
ThinkPHP做文字水印时提示call an undefined function exif_imagetype()解决方法
CI框架学习笔记(二) -入口文件index.php
PHP改进计算字符串相似度的函数similar_text()、levenshtein()
PHP依赖倒置(Dependency Injection)代码实例
php json_encode()函数返回json数据实例代码
PHP中魔术变量__METHOD__与__FUNCTION__的区别
PHP5.3安装Zend Guard Loader图文教程
php实现的Timer页面运行时间监测类
PHP中auto_prepend_file与auto_append_file用法实例分析
PHP+iFrame实现页面无需刷新的异步文件上传
Windows下的PHP 5.3.x安装 Zend Guard Loader教程
当前比较流行的两款PHP加密、解密工具Zend Guard和iconCube介绍
Chrome Web App开发小结
PHP小教程之实现双向链表
PHP命名空间(Namespace)简明教程
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
PHP、Nginx、Apache中禁止网页被iframe引用的方法
在PHP中使用X-SendFile头让文件下载更快
php中$美元符号与Zen Coding冲突问题解决方法分享
windwos下使用php连接oracle数据库的过程分享
浅析php中json_encode()和json_decode()
php定时计划任务与fsockopen持续进程实例
PHP+memcache实现消息队列案例分享
PhpDocumentor 2安装以及生成API文档的方法
你可能不知道PHP get_meta_tags()函数
Windows中使用计划任务自动执行PHP程序实例
Windows和Linux中php代码调试工具Xdebug的安装与配置详解
zf框架的db类select查询器join链表使用示例(zend框架)
zf框架的zend_cache缓存使用方法(zend框架)
用Zend Studio+PHPnow+Zend Debugger搭建PHP服务器调试环境步骤
PHP类继承 extends使用介绍
©2014-2024 dbsqp.com