1. Go to this page and download the library: Download krixon/datetime 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/ */
krixon / datetime example snippets
// These objects all represent the current time.
$date = DateTime::now();
$date = DateTime::create();
$date = new DateTime();
$date = DateTime::create('21st March 2017 09:45:00');
$date->withDateAt(2016, 09, 15); // 2016-09-15 09:45:00
// Any components not specified will not be changed.
$date->withDateAt(null, null, 15); // 2017-01-15 09:45:00
// There are also methods for setting the components individually.
$date->withYear(1981); // 1981-03-21 09:45:00
$date->withMonth(DateTime::JAN); // 2017-01-21 09:45:00
$date->withDay(15); // 2017-03-15 09:45:00
// Convenience methods for common date adjustments.
$date->withDateAtStartOfYear(); // 2017-01-01 00:00:00
$date->withDateAtStartOfMonth(); // 2017-03-01 00:00:00
$date->withDateAtEndOfMonth(); // 2017-03-31 00:00:00
$date->withDateAtDayOfWeekInMonth(DateTime::TUE, 4); // 2017-03-28 00:00:00 (4th Tuesday in March 2017)
$date->withDateAtDayOfWeekInMonth(DateTime::MON, -2); // 2017-03-20 00:00:00 (Penultimate Tuesday in March 2017)
$date->withDateAtStartOfWeek('en_GB'); // 2017-03-20 00:00:00 (Monday, start of the week of 21st Match 2017 in Great Britain).
$date->withDateAtStartOfWeek('en_US'); // 2017-03-19 00:00:00 (Sunday, start of the week of 21st Match 2017 in USA).