當前位置: 首頁>>代碼示例>>PHP>>正文


PHP GWF_Website::getBirthdate方法代碼示例

本文整理匯總了PHP中GWF_Website::getBirthdate方法的典型用法代碼示例。如果您正苦於以下問題:PHP GWF_Website::getBirthdate方法的具體用法?PHP GWF_Website::getBirthdate怎麽用?PHP GWF_Website::getBirthdate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在GWF_Website的用法示例。


在下文中一共展示了GWF_Website::getBirthdate方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: display

 public static function display()
 {
     $y1 = substr(GWF_Website::getBirthdate(), 0, 4);
     $y2 = date('Y');
     $years = $y1 === $y2 ? $y1 : "{$y1}-{$y2}";
     return GWF_HTML::lang('copy', array($years));
 }
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:7,代碼來源:GWF_Copyright.php

示例2: guessRSSDate

 public function guessRSSDate()
 {
     if (count($this->items) === 0) {
         $date = GWF_Website::getBirthdate();
     } else {
         $item = $this->items[0];
         return $item->getRSSPubDate();
     }
 }
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:9,代碼來源:GWF_RSS.php

示例3: templateFeed

 private function templateFeed(GWF_Language $lang)
 {
     header("Content-Type: application/xml; charset=UTF-8");
     $items = $this->getItems($lang);
     if (count($items) > 0) {
         $rss_date = $items[key($items)]['pub_date'];
     } else {
         $rss_date = GWF_Time::rssDate(GWF_Website::getBirthdate());
     }
     $tVars = array('items' => $items, 'title_link' => Common::getAbsoluteURL('news/feed'), 'language' => $lang->displayName(), 'image_url' => Common::getAbsoluteURL('favicon.ico'), 'image_link' => Common::getAbsoluteURL('news'), 'image_width' => '32', 'image_height' => '32', 'pub_date' => $rss_date, 'build_date' => $rss_date);
     echo '<?xml version="1.0" encoding="UTF-8" ?>' . PHP_EOL . $this->module->templatePHP('feed.php', $tVars);
     die;
 }
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:13,代碼來源:Feed.php


注:本文中的GWF_Website::getBirthdate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。