Новости | Документация | Download | Webboard | FAQ | Поиск | Контакты


DateTime::setTimezone

(PHP 5 >= 5.2.0)

DateTime::setTimezoneSets the time zone for the DateTime object

Описание

public DateTime DateTime::setTimezone ( DateTimeZone $timezone )

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

object

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

timezone

Desired time zone.

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

Returns the modified DateTime.

Примеры

Пример #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();
?>

Результат выполнения данного примера:

Europe/London
America/Los_Angeles

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






  Copyright Apache.ru © 1999-2017, All Rights Reserved Разработка сайта: Inside.ru  
  РЕКЛАМА НА САЙТЕ: |