时间戳的相关函数

来源:互联网 发布:mp3数据恢复 编辑:程序博客网 时间:2024/06/13 22:31
在上一次做项目的时候,我的电脑设置input的type为“date“时,就有出现

Warning: mktime(): 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. in  某某行,我对他进行了翻译,然而并没有发现出什么,今天做时间戳的练习时有出现了这种情况,于是我在csdn里面搜索了一下后来发现,原来是因为时区的问题。写个<?php date_default_timezone_set(("PRC") ?> 就可以了。还可以修改php.ini文件中的设置,找到[date]下的“;date.timezone =”选项,将其修改为“date.timezone =Asia/Hong_Kong”,然后重新启动Apache服务器。但是我没有找到php.int文件,所以我就采用了第一个方法。