转换unix时间戳php
我有一个数据库来存储我的时间。我使用 PHP 将其插入,
date( 'Y-m-d H:i:s');
然后使用此函数将其转换为 PHP 中的 unix 时间戳
function convert_datetime($str)
{
list($date, $time) = explode(' ', $str);
list($year, $month, $day) = explode('-', $date);
list($hour, $minute, $second) = explode(':', $time);
$timestamp = mktime($hour, $minute, $second, $month, $day, $year);
return $timestamp;
}
我现在需要做的就是将此时间戳转换为以下格式的日期和时间: yyyymmddhhmmss(没有任何连字符、破折号、冒号等)。
有人有什么想法吗?
I have a database that stores the time for me. I insert it from PHP using
date( 'Y-m-d H:i:s');
I then use this function to convert it to a unix timestamp in PHP
function convert_datetime($str)
{
list($date, $time) = explode(' ', $str);
list($year, $month, $day) = explode('-', $date);
list($hour, $minute, $second) = explode(':', $time);
$timestamp = mktime($hour, $minute, $second, $month, $day, $year);
return $timestamp;
}
What I now need to do is convert this timestamp to the date and time in this format:
yyyymmddhhmmss (without any hyphens, dashes, colons, etc).
Has anyone any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用
strtotime
和date
函数:You can use the
strtotime
anddate
function:使用日期。
Use date.
干得好
here you go
如果您使用 mysql,它有一个
DATE_FORMAT
函数。您可以这样称呼它,因此您可以从数据库中获取已经格式化的日期。
If you're using mysql, it has a
DATE_FORMAT
function. You can call it likeSo you get an already formatted date from your database.
使用正确的格式:
Use the right format :