“PHP TimeZone default” Kode Jawaban

PHP Default TimeZone

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

PHP Dapatkan Tanggal Menggunakan TimeZone

<?php
$date = new DateTime("now", new DateTimeZone('America/New_York') );
echo $date->format('Y-m-d H:i:s');
Arrogant Ape

PHP dapatkan zona waktu

echo date_default_timezone_get(); //UTC

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

PHP TimeZone default

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

Atur zona waktu dalam php

date_default_timezone_set('Asia/Kolkata);
Frail Falcon

php datetime mengatur zona waktu

$date = new \DateTime();
$date->setTimezone(new \DateTimeZone('+0800')); //GMT
echo $date->format('Y-m-d H:i:s');
// 2020-11-20 15:23:49
Aggressive Ant

Jawaban yang mirip dengan “PHP TimeZone default”

Pertanyaan yang mirip dengan “PHP TimeZone default”

Lebih banyak jawaban terkait untuk “PHP TimeZone default” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya