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