Miscellaneous
  Home arrow Miscellaneous arrow Page 2 - Working with dates and times in PHP
Codewalker Forums 
  Tutorials  
Database Articles  
Miscellaneous  
Navigation Usability  
PEAR Articles  
Programming Basics  
Server Administration  
XML Tutorials  
  Reviews  
Database Book Reviews  
Linux Book Reviews  
Miscellaneous Reviews  
PHP Book Reviews  
PHP Software Reviews  
Server Admin Reviews  
SQL Tool Reviews  
  Code Gallery  
Content Management Code  
Contest Code  
Counters Code  
Database Code  
Date Time Code  
Discussion Board Code  
Email Code  
File Manipulation Code  
GUI Code  
Link Farm Code  
Miscellaneous Code  
Search Code  
Site Navigation Code  
User Management Code  
Forums Sitemap 
Dedicated Servers  
Download TestComplete 
JMSL Numerical Library 
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? 
MISCELLANEOUS

Working with dates and times in PHP
By: Hermawan Haryanto
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 1
    2002-11-12

    Table of Contents:
  • Working with dates and times in PHP
  • Human Readable Formats
  • Making your own date and time
  • My own Language

  • 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


    Working with dates and times in PHP - Human Readable Formats


    (Page 2 of 4 )

    Now, we want to display that timestamp in a human readable format. To do that we have to understand the date() function. This date function is used to convert from a UNIX timestamp to a human readable date. The date function is:

    string date ( string format [, int timestamp])

    You can see that the timestamp is rounded by ‘[‘ and ‘]’, that means it’s optional. If we put it then the function will use it and if we don’t put it then the function will use the default timestamp. The default timestamp which is used when we don't put any timestamp is the current time.

    Let’s start our work with the date function. We want to show the user what date and time is now.

    <?php
    print date("l, F jS Y â€“ H:i:s");
    ?>

    As you can see on the example above, I use l, F jS Y - H:i:s as the variable passed to the function. Here is a list of formatting characters used:

    F - month, textual, long; e.g. "January" 
    H - hour, 24-hour format; i.e. "00" to "23" 
    i - minutes; i.e. "00" to "59" 
    j - day of the month without leading zeros; i.e. "1" to "31" 
    l (lowercase 'L') - day of the week, textual, long; e.g. "Friday" 
    s - seconds; i.e. "00" to "59" 
    S - English ordinal suffix for the day of the month, 2 characters; i.e. "st", "nd", "rd" or "th" 
    Y - year, 4 digits; e.g. "1999"

    For a complete list of formatting characters, see the manual page at http://www.php.net/manual/en/function.date.php

    More Miscellaneous Articles
    More By Hermawan Haryanto


       · get me date function of today's in the php language
     

    MISCELLANEOUS ARTICLES

    - Stopping CSRF Attacks in Your PHP Applicatio...
    - Quick and Dirty AJAX Tutorial
    - Flickr Puzzle Mashup
    - The PAVISE of Security
    - Creating a CAPTCHA with PHP
    - Sending SMS Thru HTTP
    - The Postal Fix - Part 2
    - Adding Mail with Exim
    - The Postal Fix - Part 1
    - Create Your Own Custom API
    - Adding Drop Shadows with PHP
    - Writing a Basic Authentication System in PHP
    - Overlapping Images with GD
    - Using Sockets in PHP
    - Dynamic CSS with PHP






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway