PHP date_timezone_get() 函数

返回上一级

PHP date_timezone_get() 函数返回给定 DateTime 对象的时区

( php 5.2+ )

函数原型

date_timezone_get( **object);

参数列表

参数 描述
object 必需。规定一个由 date_create() 返回的 DateTime 对象

返回值

如果成功则返回 DateTimeZone 对象
如果失败则返回 FALSE

范例

下面的范例输出给定 DateTime 对象的时区

<?php

$date=date_create(null,timezone_open("Europe/Paris"));
$tz = date_timezone_get($date);
echo timezone_name_get($tz);

运行范例 »

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.