|
The PHP Analog Clock
|
Other links at PHP > Scripts and Programs > Date and Time |
| 1. |
ADOdb Date and Time Library
|
|
|
PHP native date functions use integer timestamps for computations. Because of this, dates are restricted to the years 1901-2038 on Unix and 1970-2038 on Windows due to integer overflow for dates beyond those years. This library was developed to overcome these limitation by replacing the native functions signed integers with PHP floating point numbers when necessary. This library supports dates from 100 A.D. to billions of years in the future. For high speed, this library uses the native date functions where possible, and only switches to PHP code when the dates fall outside the 32-bit signed integer range.
|
| 2. |
PHP Date Picker
|
|
|
The author writes "I was looking for the easiest, quickest way to add a date picker to my internal web site without having to add more javascript or a pop-up window. I found several fantastic javascripts to add calendars to the page and a few even used layers instead of pop-ups, but I was looking for something simpler. I noticed that although the javascript calendars will allow you to pick a date years away, most of my users were picking dates in the next 60 days and no more than 120 ever. So for my application I came up with this. Quick and easy you just call the function whereever you want the date dropdown to show up."
|
| 3. |
PHPClock
|
|
|
A simple text clock with 4 differnet formats to choose from, also includes some date formats. Note this script only shows server time.
|
| 4. |
Simple Graphical Time Script
|
|
|
This graphics based clock uses simple PHP functions such as date(), and then breaks down the numbers contained in the hours, minutes, and seconds. It then calls images based on the numbers. AM & PM is also called based on the current time! This script basically refreshes the browser each second. Its more of a learning tool than an actual clock!
|
| 5. |
Matt Emerys World Time Clock
|
|
|
A PHP script to view the actual time in most major cities and timezones. Integrate into your site seamlessly. Easy for beginners to setup and use quickly. Only one small file in total. You can control how it looks with some simple settings.
|
|
|