doumeng1143 2013-10-30 19:30
浏览 71
已采纳

PHP DateTime接受多种格式?

I'm trying to construct a DateTime object with multiple accepted formats.

According to the DateTime::createFromFormat docs, the first parameter (format) must be a string. I was wondering if there was a way to createFromFormats.

In my case, I want the year for my format to be optional:

DateTime::createFromFormat('Y-m-d', $date);
DateTime::createFromFormat('m-d', $date);

so that a user can input just 'm-d' and the year would be assumed 2013. If I wanted multiple accepted formats, would I have to call createFromFormat each time?

Shortest thing for my scenario is:

DateTime::createFromFormat('m-d', $date) ?: DateTime::createFromFormat('Y-m-d', $date);
  • 写回答

1条回答 默认 最新

  • duana1986 2013-10-30 20:11
    关注

    You could create your own class that extends DateTime and add your own method:

    class EasyDateTime extends DateTime {
    
        public static function createFromFormat($string){   
            if (count(explode("-", $string)) === 2) {
                $string = date('Y')."-".$string;
            }
            return parent::createFromFormat('Y-m-d',$string);
        }
    }
    
    var_dump( EasyDateTime::createFromFormat('01-01') );
    // object(DateTime)#1 (3) { ["date"]=> string(19) "2013-01-01 05:11:03" ["timezone_type"]=> int(3) ["timezone"]=> string(11) "Europe/Oslo" }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部