How do I get timestamp from,for example : 22-09-2008
|
1
|
|
|
|
|
|
$indate= '2009-07-24'; cinverttimestamp($indate); function cinverttimestamp($indate){ list($year, $month, $day) = explode('-', $indate); $timestamp = mktime(0, 0, 0, $month, $day, $year); return $timestamp; } ?> view from here http://youropensource.com/projects/327-convert-date-to-timestamp-php |
||
|
|
|
|
FROM_UNIXTIME(mysql_timestamp), FROM_UNIXTIME(mysql_timestamp,format) |
||
|
|
|
|
echo strtotime ("now"); // if you want today |
||
|
|
|
|
hi all,how can i extract date from the mysql timestamp field? |
||
|
|
|
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 |
||
|
|
|
There is also strptime which expects exactly one format:
|
||
|
|
|
Thanks to both! |
||
|
|
|
||
|
|
|
Using mktime:
|
||
|
