Date to timestamp (PHP)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T06:03:33Zhttp://stackoverflow.com/feeds/question/113829http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/113829/date-to-timestamp-php3Date to timestamp (PHP)?Wizard4U2008-09-22T08:41:20Z2009-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#1138361Answer by Till for Date to timestamp (PHP)?Till2008-09-22T08:44:11Z2008-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#11384117Answer by Owen for Date to timestamp (PHP)?Owen2008-09-22T08:45:20Z2008-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#1138700Answer by Wizard4U for Date to timestamp (PHP)?Wizard4U2008-09-22T08:52:16Z2008-09-22T08:52:16Z<p>Thanks to both!</p>
http://stackoverflow.com/questions/113829/date-to-timestamp-php/113871#1138715Answer by Armin Ronacher for Date to timestamp (PHP)?Armin Ronacher2008-09-22T08:52:45Z2008-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#1158645Answer by daremon for Date to timestamp (PHP)?daremon2008-09-22T16:22:12Z2008-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#8104870Answer by shailesh thap for Date to timestamp (PHP)?shailesh thap2009-05-01T07:15:32Z2009-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#8586550Answer by zzapper for Date to timestamp (PHP)?zzapper2009-05-13T15:30:52Z2009-05-13T15:30:52Z<p>echo strtotime ("now"); // if you want today</p>
http://stackoverflow.com/questions/113829/date-to-timestamp-php/886305#8863050Answer by Chris for Date to timestamp (PHP)?Chris2009-05-20T05:34:28Z2009-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#10982840Answer by damu for Date to timestamp (PHP)?damu2009-07-08T14:03:26Z2009-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>