“PHP TimeZone” Kode Jawaban

PHP mengatur timezone Italia

date_default_timezone_set('Europe/Rome');
$italy_current_time = date("Y-m-d H:i:s");
Doubtful Deer

PHP Default TimeZone

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

PHP DatetTime saat ini zona waktu AS

<?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

Zona Waktu Siang Pasifik PHP

date_default_timezone_set('America/Los_Angeles'); // or wherever you are

$time = time();

if ($time >= strtotime("Second Sunday March 0")  && $time < strtotime("First Sunday November 0")) 
{

    echo date('m/d/y h:i a', $time);

} else {

    echo date('m/d/y h:i a', $time);

}
Adventurous Alligator

PHP TimeZone

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

Jawaban yang mirip dengan “PHP TimeZone”

Pertanyaan yang mirip dengan “PHP TimeZone”

Lebih banyak jawaban terkait untuk “PHP TimeZone” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya