Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

convert unix timestamp php

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?

like image 228
109221793 Avatar asked Nov 28 '22 05:11

109221793


1 Answers

You can use the strtotime and date function:

echo date('Ymdhis', strtotime($date));
like image 153
Sarfraz Avatar answered Dec 10 '22 18:12

Sarfraz