How do I get timestamp from e.g. 22-09-2008?
|
feedback
|
|
| |||||||||||||
feedback
|
|
There is also strptime which expects exactly one format:
| |||||||||
feedback
|
|
Be careful with functions like strtotime() that try to "guess" what you mean (it doesn't guess of course, the rules are here). Indeed 22-09-2008 will be parsed as 22 September 2008, as it is the only reasonable thing. How will 08-09-2008 be parsed? Probably 09 August 2008. What about 2008-09-50? Some versions of PHP parse this as 20 October 2008. So, if you are sure your input is in DD-MM-YYYY format, it's better to use the solution offered here: http://stackoverflow.com/questions/113829/date-to-timestamp-php#113871 | |||||||||
feedback
|
|
Using mktime:
| |||||||
feedback
|
|
With DateTime API:
| |||||
feedback
|
|
If you now the format use strptime, because strtotime does a guess for the format Since strptime is not implemented in Windows there is a custom function: see http://nl3.php.net/manual/en/function.strptime.php#86572 Remember that the returnvalue tm_year is from 1900! and tm_month is 0-11 After the you can use:
| |||
|
feedback
|
|
Here is how I'd do it: function dateToTimestamp($date, $format, $timezone='Europe/Belgrade') {
} $timestamps=dateToTimestamp('15.02.1991.', '%d.%m.%Y.', 'Europe/London'); $day_start=$timestamps['day_start']; This way, you let the function know what date format you are using and even specify the timezone. | |||
|
feedback
|
|
Here is a very simple and effectve solution using split and mtime functionns
I worked like a charm for me. | |||
|
feedback
|