Skip to content

Easier way to get the Unix timestamp #18

Description

@nicosemp

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions