PHP code example of allegedwizard / simple-calendar-php
1. Go to this page and download the library: Download allegedwizard/simple-calendar-php 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/ */
allegedwizard / simple-calendar-php example snippets
// Example output of:
$calendar = new SimpleCalendar( 'August', 2023 );
$model = $calendar->toArray();
print_r( $model );
composer