Answers for "php.ini mexico timezone"

PHP
-1

php current datettime us time zone

<?php
$date = new DateTime("now", new DateTimeZone('America/New_York') );
echo $date->format('Y-m-d H:i:s');
Posted by: Guest on August-03-2020
0

php set timezone italy

date_default_timezone_set('Europe/Rome');
$italy_current_time = date("Y-m-d H:i:s");
Posted by: Guest on December-30-2020
0

Pacific Daylight Time Zone 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);

}
Posted by: Guest on August-05-2020

Browse Popular Code Answers by Language