• 已解决:ECSHOP安装出现date_default_timezone_get()问题


    今天在安装ECSHOP时遇到警告如下:

    Warning: date_default_timezone_get(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In ...

    很明显是由于PHP默认的时间区域设置问题导致的警告

    date_default_timezone_get — 取得一个脚本中所有日期时间函数所使用的默认时区

    默认时区,使用如下“假定”的顺序:

    用 date_default_timezone_set() 函数设定的时区(如果设定了的话)

    仅仅在 PHP 5.4.0 之前: TZ 环境变量(如果非空)

    date.timezone 配置选项(如果设定了的话)

    仅仅在 PHP 5.4.0 之前: 查询操作系统主机 (如果操作系统支持并允许)。

    如果以上选择都不成功,date_default_timezone_get() 会则返回 UTC 的默认时区。

    最简单的解决办法:

    vim /etc/php.ini

    找到date.timezone

    将它的改为 date.timezone=utc 将前面的分号去掉,重启服务器

    或者在index.php中加上 date_default_timezone_set('UTC');

  • 相关阅读:
    Revolving Digits[EXKMP]
    字符加密Cipher(bzoj 1031)
    Hotaru's problem
    1089 最长回文子串 V2(Manacher算法)
    3172: [Tjoi2013]单词
    3689: 异或之
    3942: [Usaco2015 Feb]Censoring [KMP]
    2795: [Poi2012]A Horrible Poem
    GT考试(bzoj 1009)
    NOIP2016提高组解题报告
  • 原文地址:https://www.cnblogs.com/Beyron/p/6213603.html
Copyright © 2020-2023  润新知