Home
last modified time | relevance | path

Searched refs:dateString (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedDate.php16 * @param mixed $dateString optional the date this FeedDate will represent. If not specified, the current date and
19 public function __construct($dateString = "")
21 if ($dateString == "") {
22 $dateString = date("r");
25 if (is_integer($dateString)) {
26 $this->unix = $dateString;
29 $this->unix = (int) (new Datetime($dateString))->format('U');
18 __construct($dateString = '') global() argument