“PHP dostaje strefę czasu” Kod odpowiedzi

Domyślna strefa czasowa PHP

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

PHP dostaje strefę czasu

echo date_default_timezone_get(); //UTC

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

strefa czasowa zestawu php

date_default_timezone_set('Asia/Jakarta');
adens

Jak uzyskać listę dostępnych stref czasowych w 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

strefa czasowa 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

Ustaw stref czasu w PHP

date_default_timezone_set('Asia/Kolkata);
Frail Falcon

Odpowiedzi podobne do “PHP dostaje strefę czasu”

Pytania podobne do “PHP dostaje strefę czasu”

Więcej pokrewnych odpowiedzi na “PHP dostaje strefę czasu” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu