Like most programming languages, PHP comes with a fairlyfull-featured API for date and time value manipulation. You've probablyused it in your applications, but never bothered to look too closely atit. Well, here's your chance to rectify that mistake - this articledelves into the date/time API in depth, uncovering some hidden nuggetsand demonstrating how it can be used to simplify date and timeprocessing in your PHP scripts.
First up, before we get into anything too complicated, let's take a quick tour of the important date and time manipulation functions that come with PHP 4.1. The simplest and most basic thing you'll want to do with PHP's date API is, obviously, get the current date and time. This is best accomplished via the getdate() function, which returns an associative array containing date and time information.
Here's an example:
<?
// get current date information as associative array
$current = getdate();
// print it
print_r($current);
?>
This information can easily be manipulated and
massaged into whatever format you like. For example,
<?
// get current date
$current = getdate();
// turn it into strings
$current_time = $current["hours"] . ":" . $current["minutes"] . ":" .
$current["seconds"]; $current_date = $current["mday"] . "." .
$current["mon"] . "." . $current["year"];
// print it
// this would generate output of the form "It is now 9:14:34 on
23.5.2001" echo "It is now $current_time on $current_date"; ?>
You can also give getdate() a timestamp, and have it convert
that timestamp into an array for you. Consider the following example, which sends getdate() a UNIX timestamp for the date December 25 2001, and gets the information back as a much easier-to-read array: