Date to timestamp (PHP)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:03:33Z http://stackoverflow.com/feeds/question/113829 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/113829/date-to-timestamp-php 3 Date to timestamp (PHP)? Wizard4U 2008-09-22T08:41:20Z 2009-07-08T14:03:26Z <p>How do I get timestamp from,for example : 22-09-2008</p> http://stackoverflow.com/questions/113829/date-to-timestamp-php/113836#113836 1 Answer by Till for Date to timestamp (PHP)? Till 2008-09-22T08:44:11Z 2008-09-22T08:44:11Z <p>Using <a href="http://php.net/mktime" rel="nofollow">mktime</a>:</p> <pre><code>list($day, $month, $year) = explode('-', '22-09-2008'); echo mktime(0, 0, 0, $month, $day, $year); </code></pre> http://stackoverflow.com/questions/113829/date-to-timestamp-php/113841#113841 17 Answer by Owen for Date to timestamp (PHP)? Owen 2008-09-22T08:45:20Z 2008-09-22T08:45:20Z <p>php's <a href="http://php.net/manual/en/function.strtotime.php" rel="nofollow">strtotime()</a></p> <p>gives</p> <pre><code>$timestamp = strtotime('22-09-2008'); </code></pre> http://stackoverflow.com/questions/113829/date-to-timestamp-php/113870#113870 0 Answer by Wizard4U for Date to timestamp (PHP)? Wizard4U 2008-09-22T08:52:16Z 2008-09-22T08:52:16Z <p>Thanks to both!</p> http://stackoverflow.com/questions/113829/date-to-timestamp-php/113871#113871 5 Answer by Armin Ronacher for Date to timestamp (PHP)? Armin Ronacher 2008-09-22T08:52:45Z 2008-09-22T08:52:45Z <p>There is also strptime which expects exactly one format:</p> <pre><code>$a = strptime('22-09-2008', '%d-%m-%Y'); $timestamp = mktime(0, 0, 0, $a['tm_month'], $a['tm_day'], $a['tm_year']); </code></pre> http://stackoverflow.com/questions/113829/date-to-timestamp-php/115864#115864 5 Answer by daremon for Date to timestamp (PHP)? daremon 2008-09-22T16:22:12Z 2008-09-22T16:22:12Z <p>Be careful with functions like strtotime() that try to "guess" what you mean (it doesn't guess of course, the <a href="http://www.gnu.org/software/tar/manual/html_node/Date-input-formats.html" rel="nofollow">rules are here</a>).</p> <p>Indeed 22-09-2008 will be parsed as 22 September 2008, as it is the only reasonable thing. </p> <p>How will 08-09-2008 be parsed? Probably 09 August 2008. </p> <p>What about 2008-09-50? Some versions of PHP parse this as 20 October 2008.</p> <p>So, if you are sure your input is in DD-MM-YYYY format, it's better to use the solution offered here: <a href="http://stackoverflow.com/questions/113829/date-to-timestamp-php#113871">http://stackoverflow.com/questions/113829/date-to-timestamp-php#113871</a></p> http://stackoverflow.com/questions/113829/date-to-timestamp-php/810487#810487 0 Answer by shailesh thap for Date to timestamp (PHP)? shailesh thap 2009-05-01T07:15:32Z 2009-05-01T07:15:32Z <p>hi all,how can i extract date from the mysql timestamp field?</p> http://stackoverflow.com/questions/113829/date-to-timestamp-php/858655#858655 0 Answer by zzapper for Date to timestamp (PHP)? zzapper 2009-05-13T15:30:52Z 2009-05-13T15:30:52Z <p>echo strtotime ("now"); // if you want today</p> http://stackoverflow.com/questions/113829/date-to-timestamp-php/886305#886305 0 Answer by Chris for Date to timestamp (PHP)? Chris 2009-05-20T05:34:28Z 2009-05-20T05:34:28Z <p>FROM_UNIXTIME(mysql_timestamp), FROM_UNIXTIME(mysql_timestamp,format)</p> http://stackoverflow.com/questions/113829/date-to-timestamp-php/1098284#1098284 0 Answer by damu for Date to timestamp (PHP)? damu 2009-07-08T14:03:26Z 2009-07-08T14:03:26Z <p> <p>$indate= '2009-07-24'; cinverttimestamp($indate);</p> <p>function cinverttimestamp($indate){ list($year, $month, $day) = explode('-', $indate); $timestamp = mktime(0, 0, 0, $month, $day, $year); return $timestamp; } ?> </p> <p>view from here </p> <p><a href="http://youropensource.com/projects/327-convert-date-to-timestamp-php" rel="nofollow">http://youropensource.com/projects/327-convert-date-to-timestamp-php</a></p>