本文整理匯總了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));
}
示例2: guessRSSDate
public function guessRSSDate()
{
if (count($this->items) === 0) {
$date = GWF_Website::getBirthdate();
} else {
$item = $this->items[0];
return $item->getRSSPubDate();
}
}
示例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;
}