PHP code example of armen-e5518 / icalendar

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

    

armen-e5518 / icalendar example snippets



use icalendar\iCalendar;


$ical = new iCalendar(); 
$lines = $ical->load( file_get_contents( 'example.ics' ) ); 

var_dump( $lines );