本文整理汇总了PHP中DateTimeHelper::uiTimestamp方法的典型用法代码示例。如果您正苦于以下问题:PHP DateTimeHelper::uiTimestamp方法的具体用法?PHP DateTimeHelper::uiTimestamp怎么用?PHP DateTimeHelper::uiTimestamp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DateTimeHelper
的用法示例。
在下文中一共展示了DateTimeHelper::uiTimestamp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: uiTimestamp
/**
* Returns a UI-facing timestamp.
*
* - If the date/time is from today, only the time will be retuned in a localized format (e.g. “10:00 AM”).
* - If the date/time is from yesterday, “Yesterday” will be returned.
* - If the date/time is from the last 7 days, the name of the day will be returned (e.g. “Monday”).
* - Otherwise, the date will be returned in a localized format (e.g. “12/2/2014”).
*
* @return string
*/
public function uiTimestamp()
{
return DateTimeHelper::uiTimestamp($this);
}