MartinThoma / ics-parser

Automatically exported from code.google.com/p/ics-parser
48 stars 28 forks source link

Easier way to get the Unix timestamp #18

Open nicosemp opened 8 years ago

nicosemp commented 8 years ago

PHP has a function to get the Unix timestamp: strtotime() It works pretty well on your example too:

<?
require 'class.iCalReader.php';

$ical = new ical('MyCal.ics');
$array= $ical->events();

// The ical date
$date = $array[0]['DTSTART'];
echo $date;

// The Unix timestamp
$unixDate = strtotime($date);
echo $unixDate;
?>

This is also useful because then you can get a readable date: echo date('m/d/Y h:i:s a', $unixDate);