1. Go to this page and download the library: Download robier/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/ */
robier / date example snippets
use Robier\Date;
$date = new Date(1991, 11, 14); // or
$date = Date/Factory::new(1991, 11, 14); // or
$date = Date/Factory::dateTime(DateTime::createFromFormat('Y-m-d', '1991-11-14')); // or
$date = Date/Factory::string('1991-11-14'); // or
$date = Date/Factory::iso(1991, 46, 4);
$today = Date/Factory::today();
$tomorrow = Date/Factory::tomorrow(); // or
$tomorrow = Date/Factory::today()->next();
$yesterday = Date/Factory::yesterday(); // or
$yesterday = Date/Factory::today()->previous();
$date = new Date(1991, 11, 14);
$date->next(5);
$date = new Date(1991, 11, 14);
$date->previous(6);
$start = new Date(1991, 11, 14);
$end = new Date(1991, 12, 1);
$range = new Date\Range($start, $end); // or
$range = $start->to($end);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.