duanbi7204 2019-05-08 05:14
浏览 849
已采纳

从时间字符串获取小时和分钟

I have response from an API like below

2019-05-08T10:36:00+0530

I want to take 10:36 from it, right now I do something with regex like

preg_match('/T(.*?)\:00/');

It works, but is there any other actual way to do it more efficiently? That works on any time string in this format?

  • 写回答

2条回答 默认 最新

  • doutou19761022 2019-05-08 05:22
    关注

    Create a DateTime object by passing that string into the constructor and just format it to your liking with format()! You might want H:i if you just want the hours and minutes, or H:i:s if you want to include the seconds.

    $string = "2019-05-08T10:36:00+0530";
    $date = new DateTime($string);
    echo $date->format("H:i:s");
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?