2011-08-25
php5.0后支持时区,如果不配置可能会有警告。 1.在php.ini中配置:
[Date]
; Defines the default timezone used by the date functions
date.timezone = 'Asia/Shanghai'
这样在代码中可以用date_default_timezone_get获取时区。
echo date_default_timezone_get();
echo date('H:i:s');
date_default_timezone_set('GMT');
echo date_default_timezone_get();
echo date('H:i:s');
2.在代码中设置
date_default_timezone_set("Asia/Shanghai");
date("D");
#或
$dateTime = new DateTime("now", new DateTimeZone('Asia/Shanghai'));
echo $dateTime->format("Y-m-d H:i:s");
$dateTimeZone = new DateTimeZone('GMT');
$dateTime->setTimezone($dateTimeZone);
echo $dateTime->format("Y-m-d H:i:s");
3.计算时间差 有了时区后,计算时间差麻烦些了
function dateDiff($dt1, $dt2, $timeZone = 'GMT')
{
$tZone = new DateTimeZone($timeZone);
$dt1 = new DateTime($dt1, $tZone);
$dt2 = new DateTime($dt2, $tZone);
$ts1 = $dt1->format('Y-m-d');
$ts2 = $dt2->format('Y-m-d');
$diff = abs(strtotime($ts1)-strtotime($ts2));
$diff/= 3600*24;
return $diff;
}
echo dateDiff('20011-08-25', '2008-05-20');
4.实现格式化时间类
class DTime extends DateTime
{
public static $Format = 'Y-m-d H:i;s';
public function __construct($date = null, DateTimeZone $dtz = null)
{
if($dtz === null)
{
$dtz = new DateTimeZone(date_default_timezone_get());
}
parent::__construct($date, $dtz);
}
public function __toString()
{
return (string)parent::format(self::$Format);
}
}
$dTime = new DTime();
echo $dTime;
参考: http://ditio.net/2008/06/03/php-datetime-and-datetimezone-tutorial/
如非注明转载, 均为原创. 本站遵循知识共享CC协议,转载请注明来源
FEATURED TAGS
css
vc6
http
automake
linux
make
makefile
voip
乱码
awk
flash
vista
vi
vim
javascript
pietty
putty
ssh
posix
subversion
svn
windows
删除
编译
多线程
wxwidgets
ie
ubuntu
开源
c
python
bash
备份
性能
scp
汉字
log
ruby
中文
bug
msn
nginx
php
shell
wordpress
mqueue
android
eclipse
java
mac
ios
html5
js
mysql
protobuf
apache
hadoop
install
iocp
twisted
centos
mapreduce
hbase
thrift
tutorial
hive
erlang
lucene
hdfs
sqoop
utf8
filter
草原
yarn
ganglia
恢复
scrapy
django
fsimage
flume
tail
flume-ng
mining
scala
go
kafka
gradle
cassandra
baas
spring
postgres
maven
mybatis
mongodb
https
nodejs
镜像
心理学
机器学习
Keras
theano
anaconda
docker
spark
akka-http
json
群论
区块链
加密
抽象代数
离散对数
同余
欧拉函数
扩展欧几里德算法
ES6
node-inspect
debug
win10
vscode
挖矿