VEVENT as $event) { $date = substr($event->DTSTART,0,8); if($today == $date) { $time = substr($event->DTSTART,8,12); $str .= "Warning: Celtic game today at "; $str .= date("g:ia", strtotime($time)); $str .= " ("; $str .= $event->SUMMARY; $str .= ")"; $str .= "\n"; } } if(!empty($str)) { require("matrix.class.php"); $mat = new matrix(); $room = "#glasgow"; $mat->post($str, $room); }