gpt4 book ai didi

python - 获取日期和时间的时间戳

转载 作者:太空宇宙 更新时间:2023-11-03 15:04:19 25 4
gpt4 key购买 nike

我的数据库中有一个时间戳列。我需要将时间戳分别转换为日期和时间。

我用

$timestamp = strtotime($row1['timestamp']);
$date = date('d-m-Y', $timestamp);
$time = date('Gi.s', $timestamp);

当我使用此代码时,我无法正确获取时间。输入:2017-06-06 08:06:14输出:日期: 06-06-2017时间:806.14

提前致谢

最佳答案

<?php
$timestamp = strtotime( '2017-06-06 08:06:14');
$date = date('d-m-Y', $timestamp);
$time = date("H:i:s", $timestamp);
echo "$date $time";
?>

这会起作用..希望对您有帮助

关于python - 获取日期和时间的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44793632/

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