PHP code example of ishworkh / navigable-date

1. Go to this page and download the library: Download ishworkh/navigable-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/ */

    

ishworkh / navigable-date example snippets


    
    $NavigableDate = NavigableDate\NavigableDateLocator::getInstance()
                    ->getNavigableDateFactory()
                    ->create('2016-07-11');
    
    or 
    
    $NavigableDate = NavigableDate\NavigableDateLocator::getInstance()
                    ->getNavigableDateFactory()
                    ->createFromDateTime(new DateTime());
    
 

    $NavigableDate = NavigableDate\NavigableDateFacade::create('2016-07-11');
 
 

    $NextDay = $NavigableDate->nextDay();
    
    $NextDay->getTimestamp();
    $NextDay->getOffset();
    $NextDay->getTimeZone();
    $NextDay->format('Y-m-d');
    
    $NextNextDay = $NextDay->nextDay(); 
    $NextNextDay->nextMonth();
    
    $resetTime = true;
    $resetDays = true;
    $resetMonths = true;
    
    $NextDay->previousYear($resetTime, $resetDays, $resetMonths);
    
    // $resetTime -> resets time to 00:00:00
    // $resetDays -> resets day of the month to 01 | resets day to start of the week i.e. Monday in case of nextWeek|prevWeek
    // $resetMonths -> resets month of the year to 01