We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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);
echo date('m/d/Y h:i:s a', $unixDate);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PHP has a function to get the Unix timestamp: strtotime()
It works pretty well on your example too:
This is also useful because then you can get a readable date:
echo date('m/d/Y h:i:s a', $unixDate);
The text was updated successfully, but these errors were encountered: