Files
2021-12-10 16:09:27 +01:00

15 lines
337 B
PHP

<?php
require __DIR__.'/../vendor/autoload.php';
use Beste\Clock\UTCClock;
$clock = UTCClock::create();
$anotherTimeZone = 'Africa/Casablanca';
date_default_timezone_set($anotherTimeZone);
printf("The system time zone is %s.\n", $anotherTimeZone);
printf("The clock's time zone is %s.\n", $clock->now()->getTimezone()->getName());