1. Go to this page and download the library: Download hylianshield/date 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/ */
hylianshield / date example snippets
$factory = new HylianShield\Date\DateContainerFactory();
// Create a date container with a precision of whole days.
$container = $factory->createIntervalDay();
$storage = new HylianShield\Date\DateStorage(
'Y-m-d',
new DateTimeZone('Europe/Amsterdam')
);
$container = new HylianShield\Date\DateContainer($storage);