本文整理汇总了PHP中DateTime::createfromFormat方法的典型用法代码示例。如果您正苦于以下问题:PHP DateTime::createfromFormat方法的具体用法?PHP DateTime::createfromFormat怎么用?PHP DateTime::createfromFormat使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DateTime
的用法示例。
在下文中一共展示了DateTime::createfromFormat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getDate
public static function getDate($key)
{
$value = static::get($key);
$format = 'Y-m-d';
$dateObject = DateTime::createfromFormat($format, $value);
if ($dateObject) {
return $dateObject->date;
} else {
throw new Exception('This must be a valid date. Date format must be Y-m-d');
}
}
示例2: formatDateTime
public static function formatDateTime($out_format, $in_value = null, $in_format = null)
{
// If value is null, current date and time are returned
if (!empty($out_format)) {
$in_value = is_string($in_value) || is_null($in_value) ? $in_value : strval($in_value);
if (!empty($in_format)) {
if (false === ($date = \DateTime::createfromFormat($in_format, $in_value))) {
\Log::error("Failed to format datetime from '{$in_value}'' to '{$in_format}'");
return $in_value;
}
} else {
$date = new \DateTime($in_value);
}
return $date->format($out_format);
}
return $in_value;
}