Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Easier way to get the Unix timestamp #18

Open
nicosemp opened this issue Oct 9, 2016 · 0 comments
Open

Easier way to get the Unix timestamp #18

nicosemp opened this issue Oct 9, 2016 · 0 comments

Comments

@nicosemp
Copy link

nicosemp commented Oct 9, 2016

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);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant