关于PHP中的date()方法

    一.在使用到date()方法时,必须得先设置时区,否则浏览器会输出这样的内容: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 E:\abc\AppServer\InstallLocation\AppServ\mysite\test.php on line 4

    解决方法:①在php代码的开头使用date_default_timezone_set()方法来设置时区,如date_default_timezone_set(PRC);(这里的PRC是People's Republic of China,即中华人民共和共),至于这个date_default_timezone_set()方法在设置时区时不同地点的具体设置读者可以自行参考API文档,在其中查找date_default_timezone_set即可。(顺便说一下,PRC不在所支持的时区列表的‘亚洲’中而是在‘其他’里面)②可以到php.ini文件中修改date.timezone = PRC

    二.关于date("Y-m-d H:i:s")方法中的参数简单介绍:①对于2014,大写Y显示是2014,小写y显示是14;②12小时制,使用小写g(不带前导0,即8点显示为8)或者小写h(带有前导0,即8点显示为08)③24小时制,使用大写G(不带前导)或者大写H(带前导)

你可能感兴趣的:(关于PHP中的date()方法)