• PHP 关于timezone问题


    Warning: date(): 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 case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. 

    由于PHP语言中默认设置的是标准的格林威治时间(即采用的是零时区),所以要获取本地当前的时间必须更改PHP语言中的时区设置。更改时间设置有两种方法:

    (1)修改php.ini文件中的设置,找到[date]下的 ";date.timezone" 选项,将该项修改为"date.timezone=Asia/Hone_Kong",然后重启apache服务器

    (2)在程序中,使用时间/日期函数前添加"date_default_timezone_set("Asia/Hone_Kong");"即可

    我的小鱼你醒了 还认识早晨吗 昨夜你曾经说 愿夜幕永不开启
  • 相关阅读:
    Codeforces 931A&1312A&172A
    STL常用容器(deque&stack&queue)
    Codeforces 141A&1368A
    Tensorflow安装和配置
    Spark高可用配置
    Spark安装及环境配置
    SSH免密登录
    大数据集群linux环境搭配
    Spark学习之RDD算子
    Spark学习之再谈RDD
  • 原文地址:https://www.cnblogs.com/qflyue/p/5664322.html
Copyright © 2020-2023  润新知