本文整理汇总了PHP中DateTimeObj::parse方法的典型用法代码示例。如果您正苦于以下问题:PHP DateTimeObj::parse方法的具体用法?PHP DateTimeObj::parse怎么用?PHP DateTimeObj::parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DateTimeObj
的用法示例。
在下文中一共展示了DateTimeObj::parse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: parseDate
private function parseDate($row)
{
$fieldname = $this->getFieldName();
if (!empty($row) && isset($row[$fieldname])) {
$value = $row[$fieldname] . ' Etc/UTC';
} else {
$value = DateTimeObj::getGMT('Y-m-d H:i:s') . ' Etc/UTC';
}
$date = DateTimeObj::parse($value);
return $date;
}
示例2: Time
/**
* Generates a XMLElement representation of a `<time>`
*
* @since Symphony 2.3
* @param string $string
* A string containing date and time, defaults to the current date and time
* @param string $format (optional)
* A valid PHP date format, defaults to `__SYM_TIME_FORMAT__`
* @param boolean $pubdate (optional)
* A flag to make the given date a publish date
* @return XMLElement
*/
public static function Time($string, $format = __SYM_TIME_FORMAT__, $pubdate = false)
{
// Parse date
$date = DateTimeObj::parse($string);
// Create element
$obj = new XMLElement('time', Lang::localizeDate($date->format($format)));
$obj->setAttribute('datetime', $date->format(DateTime::ISO8601));
$obj->setAttribute('utc', $date->format('U'));
// Pubdate?
if ($pubdate === true) {
$obj->setAttribute('pubdate', 'pubdate');
}
return $obj;
}