Lines Matching defs:date
206 $logline = date('Y-m-d H:i:s', $datetime) . "\t";
220 * @param false|string|int $date Date to access, false for today
223 public function getLogfile($date = false)
227 if ($date !== null && !is_numeric($date)) {
228 $date = strtotime($date);
230 if (!$date) $date = time();
232 return $conf['logdir'] . '/' . $this->facility . '/' . date('Y-m-d', $date) . '.log';