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


PHP i18n::get_time_format方法代碼示例

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


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

示例1: testTimeFormatCustom

 function testTimeFormatCustom()
 {
     i18n::set_locale('en_US');
     $this->assertEquals('hh:mm a', i18n::get_time_format());
     i18n::set_time_format('HH:mm:ss');
     $this->assertEquals('HH:mm:ss', i18n::get_time_format());
 }
開發者ID:SustainableCoastlines,項目名稱:loveyourwater,代碼行數:7,代碼來源:i18nTest.php

示例2: testTimeFormatCustom

 public function testTimeFormatCustom()
 {
     i18n::set_locale('en_US');
     $this->assertEquals('h:mm:ss a', i18n::get_time_format());
     i18n::config()->time_format = 'HH:mm:ss';
     $this->assertEquals('HH:mm:ss', i18n::get_time_format());
 }
開發者ID:jakedaleweb,項目名稱:AtomCodeChallenge,代碼行數:7,代碼來源:i18nTest.php

示例3: __construct

 function __construct($name, $title = null, $value = "")
 {
     if (!$this->locale) {
         $this->locale = i18n::get_locale();
     }
     if (!$this->getConfig('timeformat')) {
         $this->setConfig('timeformat', i18n::get_time_format());
     }
     parent::__construct($name, $title, $value);
 }
開發者ID:SustainableCoastlines,項目名稱:loveyourwater,代碼行數:10,代碼來源:TimeField.php

示例4: getTimeFormat

 /**
  * Override the default getter for TimeFormat so the
  * default format for the user's locale is used
  * if the user has not defined their own.
  * 
  * @return string ISO date format
  */
 public function getTimeFormat()
 {
     if ($this->getField('TimeFormat')) {
         return $this->getField('TimeFormat');
     } elseif ($this->getField('Locale')) {
         require_once 'Zend/Date.php';
         return Zend_Locale_Format::getTimeFormat($this->Locale);
     } else {
         return i18n::get_time_format();
     }
 }
開發者ID:nicmart,項目名稱:comperio-site,代碼行數:18,代碼來源:Member.php


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