CakeFest 2024: The Official CakePHP Conference

IntlDateFormatter::setTimeZone

datefmt_set_timezone

(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL intl >= 3.0.0)

IntlDateFormatter::setTimeZone -- datefmt_set_timezoneEstablece la zona horaria del formateador

Descripción

Estilo orientado a objetos

public IntlDateFormatter::setTimeZone(mixed $zone): boolean

Estilo por procedimientos

datefmt_set_timezone(mixed $zone): boolean

Establece la zona horaria que se usará al formatear fechas u horas con este objeto.

Parámetros

zone

La zona horaria a usar para este formateador. Puede ser especificada en las siguientes formas:

Valores devueltos

Devuelve true en caso de éxito y false en caso de error.

Ejemplos

Ejemplo #1 Ejemplos de IntlDateFormatter::setTimeZone()

<?php
ini_set
('date.timezone', 'Europe/Amsterdam');

$formatter = IntlDateFormatter::create(NULL, NULL, NULL, "UTC");

$formatter->setTimeZone(NULL);
echo
"NULL\n ", $formatter->getTimeZone()->getId(), "\n";

$formatter->setTimeZone(IntlTimeZone::createTimeZone('Europe/Lisbon'));
echo
"IntlTimeZone\n ", $formatter->getTimeZone()->getId(), "\n";

$formatter->setTimeZone(new DateTimeZone('Europe/Paris'));
echo
"DateTimeZone\n ", $formatter->getTimeZone()->getId(), "\n";

$formatter->setTimeZone('Europe/Rome');
echo
"String\n ", $formatter->getTimeZone()->getId(), "\n";

$formatter->setTimeZone('GMT+00:30');
print_r($formatter->getTimeZone());

El resultado del ejemplo sería:

NULL
    Europe/Amsterdam
IntlTimeZone
    Europe/Lisbon
DateTimeZone
    Europe/Paris
String
    Europe/Rome
IntlTimeZone Object
(
    [valid] => 1
    [id] => GMT+00:30
    [rawOffset] => 1800000
    [currentOffset] => 1800000
)

Ver también

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top