|
Time calculation in PHP
Looking to calculate using time in PHP? Been provided with some timestamps such as
[23/Jun/2005:00:06:54 -0700]? (That example is from an Apache Log file).
Method:
- extract the relevant parts of the date from the string
- convert months to a number
- convert the numbers to seconds from Midnight, 1.1.1970
- you can calculate using the resulting figure!
function getwhen($dateinfo) {
$month = array("Jan" => 1,"Feb" => 2,"Mar" => 3, "Apr" => 4,
"May" => 5, "Jun" => 6, "Jul" => 7, "Aug" => 8,
"Sep" => 9, "Oct" => 10, "Nov" => 11, "Dec" => 12);
# Note - hour, minute, second, month, day, year order!
$ts = mktime($dateinfo[4],$dateinfo[5],$dateinfo[6],
$month[$dateinfo[2]],$dateinfo[1],$dateinfo[3]);
# Time zone correction
$ts -= $dateinfo[7] * 3600;
return $ts;
}
ereg('(..)/(...)/(....):(..):(..):(..) (...)',$first,$startdate);
$timingfrom = getwhen ($startdate);
PHP's date function can be used to convert it the opposite direction - from a value in seconds from 1.1.1970 into a string.
(written 2005-07-08 11:25:58)
Associated topics are indexed under H999 - Additional PHP MaterialH112 - PHP - Further Web Page and Network Handling
Some other Articles
What brings people to my web site?Oops - I got my initial database design wrongInstant availabilityVik, Iceland to Melksham, EnglandTime calculation in PHPThe training team that's looking out for youFrom IcelandCMS - the minefield of ChoicesVacation WeekAjax
|
1892 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|