1048883248 = Fri Mar 28, 2003 8:27 pm
Is this a standard format?
If I divide, it seems to be the number of minutes since:
Thu Jan 01, 1970 12:00 am
Ron
What date format is this: 1048883248?
Moderator: General Moderators
Using the normal date() function, you can translate that time into any formation you've ever wanted.
example:
example:
Code: Select all
<?php
$time = time();
echo date(DESIRED_FORMAT, $time);
?>