本文整理匯總了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());
}
示例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());
}
示例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);
}
示例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();
}
}