PHP code example of davidyell / fortnights

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

    

davidyell / fortnights example snippets


// For today
$dates = (new Fortnight())->dates();

// Arbitrary date
$dates = (new Fortnight())->dates(new DateTime('2016-02-01'));