当前位置: 首页>>代码示例>>PHP>>正文


PHP DateTime::createfromFormat方法代码示例

本文整理汇总了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');
     }
 }
开发者ID:Wine-Seller,项目名称:WineSeller,代码行数:11,代码来源:InputWineseller.php

示例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;
 }
开发者ID:pkdevboxy,项目名称:df-core,代码行数:17,代码来源:Schema.php


注:本文中的DateTime::createfromFormat方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。