“PHP Obtenga la zona horaria” Código de respuesta

PHP Azona temporal predeterminada

date_default_timezone_set("Asia/Kolkata");
// List of Supported Timezones https://www.php.net/manual/en/timezones.php
MeVyom

PHP Obtenga la zona horaria

echo date_default_timezone_get(); //UTC

//Read more at https://www.php.net/manual/en/function.date-default-timezone-get.php
MeVyom

PHP Set TimeZone

date_default_timezone_set('Asia/Jakarta');
adens

Cómo obtener la lista de zonas horarias disponibles en PHP

//To Get the list of timezones available in php
//use the static function listIdentifiers() on DateTimeZone class
$list = DateTimeZone::listIdentifiers();
print_r($list)
Lively Lobster

zona horaria de PHP

date_default_timezone_set("Asia/Karachi");
//if you wand your timezone in whole website than go to config/app.php
// and serch for timezone, now pass your time zone. in my case
'timezone' => 'Asia/Karachi',
//Go to following link to find your timezone
// https://www.php.net/manual/en/timezones.asia.php
Isaac

Establecer zona horaria en PHP

date_default_timezone_set('Asia/Kolkata);
Frail Falcon

Respuestas similares a “PHP Obtenga la zona horaria”

Preguntas similares a “PHP Obtenga la zona horaria”

Más respuestas relacionadas con “PHP Obtenga la zona horaria” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código