MySQL
  Home arrow MySQL arrow Page 4 - Practical Date/Time examples with PHP and ...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
MYSQL

Practical Date/Time examples with PHP and MySQL
By: Mauricio Cuenca
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 32
    2003-01-12

    Table of Contents:
  • Practical Date/Time examples with PHP and MySQL
  • The UNIX timestamp
  • How old are you? (exactly)
  • Dates with MySQL
  • Date Addition and Subtraction
  • Conclusion

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Practical Date/Time examples with PHP and MySQL - Dates with MySQL


    (Page 4 of 6 )

    MySQL has several great date and time functions that are very useful when you are working with dates. These functions are worth another article which I’ll be writing after this one.

    Meanwhile I’ll show the ones that I think are the more useful and interesting.

    Also, forcing MySQL to do the date operations by itself saves a lot of time, a lot of code and increases the performance of your application.

    Personally, every time that I need to do some date calculations involving dates contained in a database I take a look at MySQL documentation to see which function can help me and let it do the job for me.

    In all the following examples the dates can be taken from the database itself, your code or user input.

    Anyway, if you are working with databases it’s obvious that at least one of the dates came from there.

    Take care when using these functions as most of them work only on MySQL 3.22 and later. If you have doubts refer to the documentation.

    The UNIX timestamp revisited

    Programmers seem to like the UNIX timestamp very much because you can see it anywhere you go. In the case of MySQL you can use it like this:

    SELECT UNIX_TIMESTAMP();

    This will return the current timestamp.

    mysql> SELECT UNIX_TIMESTAMP('1978-04-26 02:12:59');
    +---------------------------------------+
    | UNIX_TIMESTAMP('1978-04-26 02:12:59') |
    +---------------------------------------+
    |                             262422779 |
    +---------------------------------------+

    mysql> SELECT UNIX_TIMESTAMP('1978-04-26');
    +------------------------------+
    | UNIX_TIMESTAMP('1978-04-26') |
    +------------------------------+
    |                    262414800 |
    +------------------------------+


    This will print the timestamp of the given date.

    Be careful when creating the structure and definitions for this kind of table. MySQL returns the UNIX timestamp as an unsigned integer, so keep this in mind when creating your database.

    Now, imagine you have a database with a column that contains a UNIX timestamp, you can also convert it to a ‘human-readable’ date using MySQL like this:

    mysql> SELECT FROM_UNIXTIME('262422779');
    +----------------------------+
    | FROM_UNIXTIME('262422779') |
    +----------------------------+
    | 1978-04-26 02:12:59        |
    +----------------------------+



    With this value it's just a matter of two lines of code and to use the function date_diff() that I created before:

    // Working with mysql
    $ndbconn = mysql_connect("localhost", "user", "password");
    mysql_select_db("mydb");

    // The query
    $squery = "SELECT FROM_UNIXTIME('262422779'), NOW()";
    $nresult = mysql_query($squery);
    $s_given_date = mysql_result($nresult, 0, 0);
    $s_curr_date = mysql_result($nresult, 0, 1);

    // Free the result
    mysql_free_result($nresult);

    // Disconnected
    mysql_close($ndbconn);

    // The date difference
    date_diff($s_given_date, $s_curr_date);


    In this example I used MySQL to obtain the dates and then I calculated the time elapsed between both using my - now ‘famous’ - date_diff() function.

    The UNIX timestamp can be any you have in your database, I selected the timestamp 262422779 that is exactly my ‘birth time’ and stored it in the $s_given_date variable.

    Then I selected the current time with the NOW() function and stored it in the $s_curr_date variable. The rest is old news, I already explained how the function works.

    More MySQL Articles
    More By Mauricio Cuenca


       · Some good ideas for age calculation with birthdays before 1970-1-1?A big part of...
     

    MYSQL ARTICLES

    - MySQL and BLOBs
    - Two Lessons in ASP and MySQL
    - Lord Of The Strings Part 2
    - Lord Of The Strings Part 1
    - Importing Data into MySQL with Navicat
    - Building a Sustainable Web Site
    - Creating An Online Photo Album with PHP and ...
    - Creating An Online Photo Album with PHP and ...
    - PhpED 3.2 – More Features Than You Can Poke ...
    - Creating An Online Photo Album with PHP and ...
    - Creating An Online Photo Album with PHP and ...
    - Security and Sessions in PHP
    - Setup Your Personal Reminder System Using PHP
    - Create a IP-Country Database Using PERL and ...
    - Developing a Dynamic Document Search in PHP ...







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek