“PHP Set TimeZone” Código de respuesta

Php Change TimeZone

date_default_timezone_set('America/Los_Angeles');
Mobile Star

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 fecha con la zona horaria

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

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

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

Respuestas similares a “PHP Set TimeZone”

Preguntas similares a “PHP Set TimeZone”

Más respuestas relacionadas con “PHP Set TimeZone” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código