php 日期时差8小时间解决方法_PHP教程
程序员文章站
2022-04-20 15:00:40
...
程序中添加时间的初始化语句:“date_default_timezone_set("asia/shanghai");
syntax
tips教程 and notes
example
定义和用法
the date_default_timezone_set() function sets the default timezone used by all date/time functions.
date_default_timezone_set()函数的作用是:设定用于一个脚本中所有日期时间函数的默认时区。
syntax
语法
date_default_timezone_set(timezone) |
parameter 参数 |
description 描述 |
---|---|
timezone | required. the timezone identifier, like "utc" or "europe/paris". list of valid timezones: http://www.php教程.net/manual/en/timezones.php 必要参数,时区确认器,如“utc”或“europe/paris”。下面列出了有效的时区:http://www.php.net/manual/en/timezones.php |
tips教程 and notes
注意点
note: this function always returns true (even if the timezone parameter isn't valid).
注意:这个函数总是返回true(即使时区参数无效的情况下)。
example
案例
the output of the code above will be:
上述代码将输出下面的结果:
上一篇: hadoop 2.0 参数调优小结
下一篇: PHP中继承实例详解
推荐阅读
-
PHP 时间和日期_PHP教程_编程技术
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创,thinkphprun_PHP教程
-
sqlserver2005教程 php操作sqlserver关于时间日期读取的小小见解
-
php 8小时时间差的解决方法小结
-
PHP substr 截取字符串出现乱码问题解决方法[utf8与gb2312]_PHP教程
-
php格式化日期和时间格式化示例分享_PHP教程
-
MySQL 日期时间函数常用总结_PHP教程
-
PHP日期时间加减程序代码详解_PHP教程
-
php Mysql日期和时间函数集合_PHP教程
-
php strtotime()函数时间日期转换_PHP教程