Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ฟังก์ชัน date_default_timezone_get() ใน PHP


ฟังก์ชัน date_default_timezone_get() จะคืนค่าเขตเวลาเริ่มต้น

ไวยากรณ์

date_default_timezone_get(void)

พารามิเตอร์

  • เป็นโมฆะ − ไม่

คืนสินค้า

ฟังก์ชัน date_default_timezone_get() จะคืนค่าสตริง

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่าง −

<?php
   echo "Old time zone is ". date_default_timezone_get();
   $timeZone = 'America/Costa_Rica';

   if( date_default_timezone_set( $timeZone) ){
      # Now get this time zone.
      echo "New time zone is ". date_default_timezone_get();
   }
?>

ผลลัพธ์

ต่อไปนี้เป็นผลลัพธ์ -

Old time zone is UTC
New time zone is America/Costa_Rica

ตัวอย่าง

เรามาดูตัวอย่างกัน −

<?php
   echo date_default_timezone_get();
?>

ผลลัพธ์

ต่อไปนี้เป็นผลลัพธ์ -

UTC