当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_View_Interface::headMeta方法代码示例

本文整理汇总了PHP中Zend_View_Interface::headMeta方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_View_Interface::headMeta方法的具体用法?PHP Zend_View_Interface::headMeta怎么用?PHP Zend_View_Interface::headMeta使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_View_Interface的用法示例。


在下文中一共展示了Zend_View_Interface::headMeta方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: expireHeader

 /**
  * Constructor do Helper. Utilizado para setar o quando deve-se adicionar ao timestamp da data atual.
  * @param $dias
  * @param $meses
  * @param $anos
  */
 public function expireHeader($dias = 10, $meses = 0, $anos = 0)
 {
     $this->timestamp = mktime(date('H'), date('i'), date('s'), date('m') + $meses, date('d') + $dias, date('Y') + $anos);
     $this->view->headMeta()->appendName('expires', date('r', $this->timestamp));
     $this->view->headMeta()->appendHttpEquiv('Expires', date('r', $this->timestamp));
     return null;
 }
开发者ID:vilmarsitio,项目名称:registrodeprecos,代码行数:13,代码来源:ExpireHeader.php

示例2: getView

 /**
  * Retrieve view object
  *
  * @return Zend_View
  */
 public function getView()
 {
     if (null === $this->_view) {
         $options = $this->getOptions();
         $this->_view = new Zend_View($options);
         if (isset($options['doctype'])) {
             $this->_view->doctype()->setDoctype(strtoupper($options['doctype']));
             if (isset($options['charset']) && $this->_view->doctype()->isHtml5()) {
                 $this->_view->headMeta()->setCharset($options['charset']);
             }
         }
         if (isset($options['contentType'])) {
             $this->_view->headMeta()->appendHttpEquiv('Content-Type', $options['contentType']);
         }
     }
     return $this->_view;
 }
开发者ID:bizanto,项目名称:Hooked,代码行数:22,代码来源:View.php

示例3: getView

 /**
  * Retrieve view object
  *
  * @return Zend_View
  */
 public function getView()
 {
     if (null === $this->_view) {
         $options = $this->getOptions();
         $this->_view = new Zend_View($options);
         if (isset($options['doctype'])) {
             $this->_view->doctype()->setDoctype(strtoupper($options['doctype']));
             if (isset($options['charset']) && $this->_view->doctype()->isHtml5()) {
                 $this->_view->headMeta()->setCharset($options['charset']);
             }
         }
         if (isset($options['contentType'])) {
             $this->_view->headMeta()->appendHttpEquiv('Content-Type', $options['contentType']);
         }
         if (isset($options['assign']) && is_array($options['assign'])) {
             foreach ($options['assign'] as $key => $value) {
                 $this->_view->assign($key, $value);
             }
         }
     }
     return $this->_view;
 }
开发者ID:Tony133,项目名称:zf-web,代码行数:27,代码来源:View.php


注:本文中的Zend_View_Interface::headMeta方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。