PHP
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

date_timezone_set> <date_time_set
Last updated: Fri, 02 Jan 2009

view this page in

date_timezone_get

(PHP 5 >= 5.2.0)

date_timezone_getReturn time zone relative to given DateTime

Description

DateTimeZone date_timezone_get ( DateTime $object )
DateTimeZone DateTime::getTimezone ( void )

Parameters

object

Procedural style only: A DateTime object returned by date_create()

Return Values

Returns DateTimeZone object on success or FALSE on failure.

Examples

Example #1 Setting and getting DateTimeZone objects

<?php
date_default_timezone_set
('Europe/London');

$datetime = new DateTime('2008-08-03 12:35:23');
echo 
$datetime->getTimezone()->getName() . "\n";

$datetime = new DateTime('2008-08-03 12:35:23');
$la_time = new DateTimeZone('America/Los_Angeles');
$datetime->setTimezone($la_time);
echo 
$datetime->getTimezone()->getName();
?>

The above example will output:

Europe/London
America/Los_Angeles



add a note add a note User Contributed Notes
date_timezone_get
There are no user contributed notes for this page.

date_timezone_set> <date_time_set
Last updated: Fri, 02 Jan 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites