date_timezone_set

(PHP 5 >= 5.1.0)

date_timezone_set — Sets the time zone for the DateTime object

Описание

void date_timezone_set ( DateTime $object , DateTimeZone $timezone )
void DateTime::setTimezone ( DateTimeZone $timezone )

Список параметров

object

DateTime object.

timezone

Desired time zone.

Возвращаемые значения

Returns NULL on success or FALSE on failure.

Смотрите также

Коментарии

Return Value

Returns NULL on success or FALSE on failure.

Example

Following is the usage of this function:

<?php
   $dateSrc 
'2007-04-19 12:50 GMT';
   
$dateTime date_create$dateSrc);
   
$DateTimeZone timezone_open 'America/Chicago' );
   
date_timezone_set$dateTime$DateTimeZone );
   
$NewDateTimeZone date_timezone_get($dateTime);
   echo 
'New timeZone is 'timezone_name_get($NewDateTimeZone);
   echo 
"\n";

   
# Using second function.
   
$dateTime = new DateTime($dateSrc);
   
$DateTimeZone timezone_open 'America/Chicago' );
   
$dateTime->setTimezone$DateTimeZone );
   
$NewDateTimeZone $dateTime->getTimezone ();
   echo 
'New timeZone is 'timezone_name_get ($NewDateTimeZone);
?> 

This will produce following result:

New timeZone is America/Chicago
New timeZone is America/Chicago
2009-08-07 05:11:22
http://php5.kiev.ua/manual/ru/function.date-timezone-set.html

    Поддержать сайт на родительском проекте КГБ