1.首先修改application配置文件
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
指定布局文件的位置
2.然后最简单的方法就是修改引导文件 bootstrap.php文件添加一个自动执行的方法:
protected function _initDoctype() { }
3.给我们的配置文中加入一个
resources.view[] =
这里我们给视图赋值,虽然他只是一个空值~
4.在我们的引导文件中加入
protected function _initDoctype()
{
$this->bootstrap('view');//开启视图
$view = $this->getResource('view');//获取文档的试图.定义于主配置中
$view->doctype('XHTML1_STRICT'); //设置文档类型
}
5.最后让我们增加一个Layout.HTML文件于application/layouts/scripts/下即可
内容为:
doctype() ?>
Zend Framework Quickstart Application
headLink()->appendStylesheet('/css/global.css') ?>
layout()->content ?>
然后查看页面内容,如果有一个横条,则表示成功,该条会出现在所有页面中!
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn