PHP date_default_timezone_set() Eastern Standard Time (EST)

后端 未结 5 704
梦谈多话
梦谈多话 2020-12-17 16:48

Long story short

Is there an official, un-deprecated timezone that PHP5 recognizes for Eastern STANDARD time--not Eastern DAYLIGHT time?

5条回答
  •  一个人的身影
    2020-12-17 17:32

    echo ' Format ' . date('m/d/Y H:i:s a') ;
    
    //maketime function- mktime(hour,minute,second,month,day,year,is_dst)
    $EasternTimeStamp =mktime(date('H')-6,date('i'),date('s'),date("m"),date("d"),date("Y"));
    // date function- date(format, timestamp)
    echo 'Format ' . date('m/d/Y H:i:s a',$EasternTimeStamp) ;

提交回复
热议问题