zoukankan      html  css  js  c++  java
  • php date("Y-m-d H:i:s") 出现警告信息

    使用:

    $createtime=date("Y/m/d H:i:s", time()+16*60*60);

    $createtime=date("Y-m-d H:i:s");//时间。。H表示24小时制

    提交表单后出现如下错误提示:

    Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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 'UTC' for '8.0/no DST' instead in C:AppServwwwwwwphpsqlcheck_add.php on line 11

    解决方法:

    方案1:check_add.php头部:<?php date_default_timezone_set("PRC");  ?>  设置默认时区为北京时间。。解决当前页面。

    方案2:在php.ini中设置date.timezone的值为PRC,设置好以后的为:date.timezone=PRC,同时取消这一行代码的注释,即去掉前面的分号就可以了。

       解决所有页面使用时间的问题。

  • 相关阅读:
    题目分享M
    题目分享L
    题目分享J
    题目分享I
    FarmCraft
    C++语言中一些可能会用到的函数及头文件
    最小生成树(Kruskal & Prim & Boruvka)
    线段树板子(懒惰标记)
    FarmCraft——树形DP+贪心
    tarjan算法板子
  • 原文地址:https://www.cnblogs.com/wxb1314/p/9933557.html
Copyright © 2011-2022 走看看