首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET Framework >

Zend Framework 视图中施用视图

2013-07-20 
Zend Framework 视图中使用视图http://blog.csdn.net/chris_mao/article/details/3035687?!DOCTYPE htmlP

Zend Framework 视图中使用视图

http://blog.csdn.net/chris_mao/article/details/3035687

?

<!DOCTYPE htmlPUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <?php     echo $this->headTitle('视图中使用视图');    $this->headLink()->appendStylesheet("/styles/main.css");    // add more links ...        echo $this->headLink();  ?></head><body>    <h1>这是一个视图中使用视图的示例</h1>    <div id='header' style="background-color: yellow;clear: both;">        <?php echo $this->partial('header.phtml'); ?>    </div>    <div id='lfetside' style="background-color: red;float: left;width: 200px">        Left Side    </div>    <div id='content' style="background-color: gray;float:left;width:600px; margin-left: 6px">        <?php echo $this->layout()->content; ?>            </div>    <div id='footer' style="background-color: yellow;clear: both;">        <?php echo $this->partial('footer.phtml'); ?>    </div>      </body></html>

?

热点排行