Zend Framework教程之Zend_Layout布局助手详解

前端之家收集整理的这篇文章主要介绍了Zend Framework教程之Zend_Layout布局助手详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了Zend Framework教程之Zend_Layout布局助手。分享给大家供大家参考,具体如下:

一、作用

布局的作用和模版的作用类似。可以认为是把网站通用、公共的部分拿出来作为通用的页面框架。例如一个基本的web页面,可能页面的头和尾都是一样,不一样的可能只是内容body部分不一样,可以把公共的部分做成模版。不仅可以提高开发效率,也为后期的维护带来方便。

二、使用

这里举一个简单的例子。

首先用zend studio创建一个基本的zend framework项目:layout_demo1

结构大概如下“

├─.settings ├─application │ ├─configs │ ├─controllers │ ├─models │ └─views │ ├─helpers │ └─scripts │ ├─error │ └─index ├─docs ├─library ├─public └─tests ├─application │ └─controllers └─library

1.加入layout功能

应用配置文件/layout_demo2/application/configs/application.ini,加入如下配置

2.相应的目录和布局模版文件

/layout_demo2/application/layouts/scripts/layout.phtml

├─application │ ├─configs │ ├─controllers │ ├─layouts │ │ └─scripts │ ├─models │ └─views

layout.html类似如下:

<Meta http-equiv="Content-Type" content="text/html;charset=utf-8"> my app

猜你在找的PHP相关文章