php__helpers/date/date.inc
2013-04-19 12:25:23 +02:00

20 lines
360 B
PHP

<?php
class DateFormatter {
const DEFAULT_FORMAT = 'l Y-m-d';
public $format;
public $time;
public function __construct() {
if (!empty($_REQUEST['apply'])) {
$this->format = $_REQUEST['format'];
}
else {
$this->format = self::DEFAULT_FORMAT;
}
}
public function date() {
return date($this->format, time());
}
}