Zend Framework 视图中使用视图
程序员文章站
2022-03-24 15:17:53
...
- <!DOCTYPEhtml
- PUBLIC"-//W3C//DTDXHTML1.0Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html>
- <head>
- <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
- <?php
- echo$this->headTitle('视图中使用视图');
- $this->headLink()->appendStylesheet("/styles/main.css");
- //addmorelinks...
- echo$this->headLink();
- ?>
- </head>
- <body>
- <h1>这是一个视图中使用视图的示例</h1>
- <divid='header'style="background-color:yellow;clear:both;">
- <?phpecho$this->partial('header.phtml');?>
- </div>
- <divid='lfetside'style="background-color:red;float:left;width:200px">
- LeftSide
- </div>
- <divid='content'style="background-color:gray;float:left;width:600px;margin-left:6px">
- <?phpecho$this->layout()->content;?>
- </div>
- <divid='footer'style="background-color:yellow;clear:both;">
- <?phpecho$this->partial('footer.phtml');?>
- </div>
- </body>
- </html>
版权声明:本文为博主原创文章,未经博主允许不得转载。
推荐阅读
-
.NET Framework中定时器timer的单线程与多线程使用讲解
-
iOS开发之如何获取视图在屏幕中显示的位置
-
详解IOS中Tool Bar切换视图方法
-
iOS中.a和.framework静态库的创建与.bundle资源包的使用详解
-
PHP的Yii框架中View视图的使用进阶
-
PHP的Yii框架中创建视图和渲染视图的方法详解
-
iOS使用pageViewController实现多视图滑动切换
-
细说SQL Server中的视图
-
Spring Boot 与 kotlin 使用Thymeleaf模板引擎渲染web视图的方法
-
Zend Framework实现将session存储在memcache中的方法