gpt4 book ai didi

php - 如何使用 php 从日期时间字符串中分离日期和时间?

转载 作者:可可西里 更新时间:2023-10-31 23:56:18 27 4
gpt4 key购买 nike

如何转换这个字符串

$parent = "2011-08-04 15:00:01";

把它分成两个字符串:

$child1= "2011-08-04";
$child2 = "12:00:01";

然后转换

$child1 to this format 8.4.2011 

$child2 to this format 15:00

最佳答案

$time = new DateTime("2011-08-04 15:00:01");
$date = $time->format('n.j.Y');
$time = $time->format('H:i');

关于php - 如何使用 php 从日期时间字符串中分离日期和时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6942084/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com