当前位置: 首页>>代码示例>>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;未经允许,请勿转载。