Tuesday, October 7, 2025
HomeLanguagesPHP | date_offset_get() Function

PHP | date_offset_get() Function

The date_offset_get() function is an inbuilt function in PHP which is used to returns the timezone offset. This function returns the timezone offset in seconds from UTC (Universal Time Coordinated) on success or FALSE on failure.

Syntax:

  • Procedural Style:
    int date_offset_get( $object )
  • Object Oriented Style:
    int DateTime::getOffset( void )
    int DateTimeImmutable::getOffset( void )
    int DateTimeInterface::getOffset( void )

Parameters: This function accepts single parameter $object which is mandatory in procedural style. The DateTime object returned by date_create() function. But in case of object oriented style no parameter required.

Return Value: This function returns the timezone offset in seconds from UTC(Universal Time Coordinated) on success or FALSE on failure.

Below programs illustrate the date_offset_get() function in PHP:

Program 1:




<?php
$date1 = date_create('2018-09-12', timezone_open('Asia/Kolkata'));
$date2 = date_create('20018-09-18', timezone_open('Asia/Singapore'));
  
echo date_offset_get($date1) . "\n";
echo date_offset_get($date2) . "\n";
?>


Output:

19800
28800

Program 2:




<?php
$date1 = new DateTime('2018-09-12', new DateTimeZone('Asia/Kolkata'));
$date2 = new DateTimeImmutable('2018-09-18', new DateTimeZone('Asia/Singapore'));
  
echo $date1->getOffset() . "\n";
echo $date2->getOffset() . "\n";
?>


Output:

19800
28800

Related Articles:

Reference: http://php.net/manual/en/datetime.getoffset.php

RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS