in php.ini file, timezone option might have set to empty or invalid value. Set valid value.
date.timezone = Etc/GMT
By Programatically
Add below line before any date related functions.
date_default_timezone_set("Etc/GMT");
Then restarting your web server.
No comments:
Post a Comment