Why are some options to date() and strftime() not supported on Windows? I though anything related to date is something that every system should support. Is it because of the way the date is internally stored?
Why are some options to date() and strftime() not supported on Windows? I though
Share
The manual on date() points out two differences:
and for strftime():
is that what you mean? Well, the reasons are explained there already, no support for negative timestamps. I don’t think much can be done about that.
If that is giving you problems, you may want to go with a library like Zend_Date.