PHP Date() - Format the Date
The required format parameter in the date() function specifies how to format the
date/time.Here are some characters that can be used:
- d - Represents the day of the month (01 to 31)
- m - Represents a month (01 to 12)
- Y - Represents a year (in four digits)
PHP date() Function
Example
Format a local date and time and return the formatted date strings:
<?php
// Prints the day
echo date("l") . "<br>";
// Prints the day, date, month, year, time, AM or PM
echo date("l jS \of F Y h:i:s A");
?>
// Prints the day
echo date("l") . "<br>";
// Prints the day, date, month, year, time, AM or PM
echo date("l jS \of F Y h:i:s A");
?>
The output of the code above could be something like this:
2009/05/11
2009.05.11
2009-05-11
2009.05.11
2009-05-11
No comments: