gpt4 book ai didi

php - 标准时间的日期时间格式方法(laravel 5.3)

转载 作者:行者123 更新时间:2023-12-02 04:02:13 25 4
gpt4 key购买 nike

这是我从数据库中获取创建日期并以正确格式显示的方法

function showDateTime($student_id, $datetime)
{

$time_zone_app = DB::table('students')->where('id', $student_id_id)->value('time_zone');
$zone_data = explode(':', $time_zone_app);

$time_zone['hours'] = $zone_data[0];
$time_zone['minutes'] = $zone_data[1];

$carbon = new Carbon\Carbon();
$carbon->setDateTime(2012, 9, 25, 10, 26, 11);
$carbon->addHours($time_zone_data[0]);
$carbon->addHours($time_zone_data[1]);

$datetime = $carbon->toFormattedDateString();
return $datetime;

}

上面我有硬代码时间,因为我没有得到我想要的时间如果我在 $carbon = new Carbon\Carbon(); 下面回显 $carbon 它给了我时间

2016-9-25 07:04:02

我想把这个时间转换成格式2016, 9, 25, 7, 4, 02 as

(年、月、日、时、分、秒)然后想把它传递给上面的 setDateTime 方法

请问我该怎么做

最佳答案

你也可以试试这个:

use Carbon\Carbon;


$now = Carbon::now();

$now->format('Y, m, d, H, i, s');

您还可以尝试以下格式。

$now->format('d-m-y H:i:s');

$now->format('d.m.y H:i:s');

关于php - 标准时间的日期时间格式方法(laravel 5.3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41340623/

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