I am currently coding a library/framework to use in my future projects. I am trying to decide on a good name for a date time type class.
Most likely I will be extending PHP's Datetime class, but add my own methods to it. Some methods include:
- displaying dates and times in different formats
- getting list of time zone options
- setting users time zone
- getting users set timezone
- adjusting dates and times according to users time zone
- difference between 2 times/dates
- other similar date and time functions
Based on that, what would you name a class that had methods to do such tasks?
Because PHP has a Datetime class already, I believe I will have to name it something different?
Ideas
- Dateandtime.class.php
- dates.class.php
Ideas?