PHP Classes

File: iCalParse.example.php

Recommend this page to a friend!
  Classes of Timo Henke   PHP iCal Parser   iCalParse.example.php   Download  
File: iCalParse.example.php
Role: Example script
Content type: text/plain
Description: Example Script
Class: PHP iCal Parser
Parse calendar event information in iCal format
Author: By
Last change:
Date: 10 years ago
Size: 158 bytes
 

Contents

Class file image Download
<?php

   
include( __DIR__ . '/iCalParse.class.php' );
   
$ical = new iCalParse();
   
print_r( $ical->doParse( file_get_contents('iCalParse.example.ics') ) );