unix timestamp php dönüştürmek

0 Cevap php

Benim için zaman depolayan bir veritabanı var. Ben PHP kullanarak onu takın

date( 'Y-m-d H:i:s');

Daha sonra PHP bir unix zaman damgası dönüştürmek için bu işlevi kullanın

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).

Herkes herhangi bir fikir?

0 Cevap