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.
|
|
|
|
|
|
|
Use Then pass the results of that into the |
||
|
|
Try strptime. |
||
|
|
|
|
Another option as you have tagged this question with SQL: the MySQL functions SELECT UNIX_TIMESTAMP(datetime_column) FROM table This usually is faster than a PHP function call. |
||||||||||
|
|
|
i think ill use http://php.net/strtotime |
||
|
|
|
@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". |
||||||||
|
|
|
Encapusulating wvanbergen's solution into a function (for your convenience)
|
||
|
|