Okay so is there a way to set a date that can be easily modified to a different format later on. Example: A date is in a mysql database, and it is in a universal format; it gets put into a document, is there a way for the date format to be changed on-the-fly?
|
feedback
|
|
Yes, it's called a unix timestamp, which represents seconds since epoch (December 31rst, 1969). With timestamps, you can use the date() function to output the date in any format you wish. | |||
|
feedback
|
|
Use timestamps? http://php.net/manual/en/function.time.php | |||
|
feedback
|
|
Short answer: Not really. Long answer: There are many different standards (RFC850, RFC822, ISO8601, to name a few) to express dates in various string formats. There are also UNIX timestamps. To do any kind of date conversion in PHP, you usually have to go through UNIX timestamps. PHP can convert virtually any standardized textual representation of a date to a UNIX timestamp using A date in your PHP app can be in one of two states:
You usually convert dates from one state to the other during input, manipulation and output.
You could say that UNIX timestamps are the universal format, but there really is no such thing as a universal date format. You shouldn't store UNIX timestamps in the database but use MySQL's native | ||||
|
feedback
|