PHP code example of kumatch / offsettimezone

1. Go to this page and download the library: Download kumatch/offsettimezone library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kumatch / offsettimezone example snippets


use Kumatch\OffsetTimeZone\OffsetTimeZone

$offsetTimeZone = new OffsetTimeZone();

$tz0 = $offsetTimeZone->createTimeZone(0);         // UTC timezone
$tz1 = $offsetTimeZone->createTimeZone( 9 * 3600); // UTC +9
$tz2 = $offsetTimeZone->createTimeZone(-7 * 3600); // UTC -7

// print UTC datetime.
$date = new DateTime("now", $tz0);
echo $date->format('Y-m-d H:i:s'), "\n";

// print UTC +9 datetime
$date->setTimetime($tz1);
echo $date->format('Y-m-d H:i:s'), "\n";