vote up 1 vote down star

Is there anyone sitting on a PHP function to convert a date of format 0000-00-00 00:00:00(datetimesql) to unix timestamp?

Thanks in advance.

flag

6 Answers

vote up 1 vote down

Use strptime() to parse the time and turn it into a structured array.

Then pass the results of that into the mktime() function to get a UNIX timestamp.

link|flag
Why is this voted down? – dalle Jan 18 at 18:10
dunno - I'm 99% sure the question didn't mention SQL when I posted this answer – Alnitak Jan 18 at 19:58
vote up 0 vote down

Try strptime.

link|flag
vote up 7 vote down

Another option as you have tagged this question with SQL: the MySQL functions FROM_UNIXTIME and UNIX_TIMESTAMP -> MySQL manual

SELECT UNIX_TIMESTAMP(datetime_column) FROM table

This usually is faster than a PHP function call.

link|flag
Why was this modded down? It's a perfectly good approach. – ceejayoz Jan 18 at 17:54
I was asking myself the same question... :-) Always try to get the data out of the database as well as possible, as MySQL will always be faster than PHP. – wvanbergen Jan 18 at 17:59
I don't think the SQL stuff was in the question when I downvoted this - maybe the edit was during the 5 minute window where it doesn't appear in the edit history? Down-vote reversed. – Alnitak Jan 18 at 18:52
not that the user specified MySQL, and the UNIX_TIMESTAMP() function is not a standard SQL function... – Alnitak Jan 18 at 18:53
Alnitak has a valid point, there are a lot of assumptions concerning whether a DB is involved or not wvanbergen. What if he's grabbing timestamps from filenames? – dcousineau Jan 18 at 20:00
show 1 more comment
vote up 1 vote down

i think ill use http://php.net/strtotime
lol

link|flag
Then vote the guy who answered your question as best answer, and post stuff like this in his answer's comments. – TravisO Jan 19 at 18:58
vote up 4 vote down

@bartek - As you noted, PHP's strtotime function is perfect for this. It can handle most common date formats, including strings like "tomorrow" or "+5 months".

link|flag
Note that because it can handle so many formats, it is really slow. Do not use it if you are going to call it often. – wvanbergen Jan 18 at 17:58
Good point, thanks. – ceejayoz Jan 18 at 18:30
yup, in fact the manual doesn't actually say whether this particular date-time format is supported. That's why I recommended strptime() instead. – Alnitak Jan 19 at 0:46
SQL datetime formats are indeed supported in strtotime. – ceejayoz Jan 19 at 19:08
vote up 0 vote down

Encapusulating wvanbergen's solution into a function (for your convenience)

//Convert SQL datetime to unixtime -- by johnboiles
function datetimeToUnixtime($datetime){
    $result = mysql_query("select unix_timestamp('$datetime')");
    $unixtime = mysql_fetch_array($result);
    return $unixtime[0];
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.