Welcome Guest, Not a member yet? Register   Sign In
Date conversion in codeigniter
#6

[eluser]Clooner[/eluser]
Simply using the date function!

Code:
$date = explode("/", $yourowntimeformat);
$unixtime = mktime(0, 0, 0, $date[1], $date[0], $date[2]);
// $unixtime = time(); // to get the current time!
echo date("Y-m-d H:i:s", $unixtime);


Messages In This Thread
Date conversion in codeigniter - by El Forum - 06-06-2010, 08:33 PM
Date conversion in codeigniter - by El Forum - 06-07-2010, 12:29 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 02:00 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 05:37 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 05:45 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 06:20 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 06:27 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 06:36 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 06:42 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 08:43 AM
Date conversion in codeigniter - by El Forum - 06-07-2010, 09:44 AM



Theme © iAndrew 2016 - Forum software by © MyBB