Home
last modified time | relevance | path

Searched refs:date (Results 51 – 73 of 73) sorted by path

123

/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php119 header('Date: ' . date('r'));
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE173 stating that you changed the files and the date of any change.
H A DREADME.md51 $item->date = $data->newsdate;
106 fixed RFC822 date bug (thanks Tanguy Pruvot)
140 fixed a real and a possible bug with date conversions
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DAtomCreator03.php66 if ($this->items[$i]->date == "") {
67 $this->items[$i]->date = time();
69 $itemDate = new FeedDate($this->items[$i]->date);
H A DAtomCreator10.php77 if ($this->items[$i]->date == "") {
78 $this->items[$i]->date = time();
80 $itemDate = new FeedDate($this->items[$i]->date);
H A DMBOXCreator.php75 $itemDate = new FeedDate($this->items[$i]->date);
76 $feed .= "From ".strtr(MBOXCreator::qp_enc($from), " ", "_")." ".date(
H A DOPMLCreator.php31 $date = new FeedDate($this->pubDate);
32 $feed .= " <dateCreated>".$date->rfc822()."</dateCreated>\n";
35 $date = new FeedDate($this->lastBuildDate);
36 $feed .= " <dateModified>".$date->rfc822()."</dateModified>\n";
H A DPHPCreator.php39 $feed .= " \$feedItem[$i]->date=".htmlspecialchars($this->items[$i]->date).";\n";
H A DPIECreator01.php38 $itemDate = new FeedDate($this->items[$i]->date);
H A DRSSCreator091.php165 if ($this->items[$i]->date != "") {
166 $itemDate = new FeedDate($this->items[$i]->date);
H A DRSSCreator10.php41 $feed .= " <dc:date>".htmlspecialchars($now->iso8601())."</dc:date>\n";
62 if ($this->items[$i]->date != null) {
63 $itemDate = new FeedDate($this->items[$i]->date);
64 $feed .= " <dc:date>".htmlspecialchars($itemDate->iso8601())."</dc:date>\n";
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedDate.php4 * FeedDate is an internal class that stores a date for a feed or feed item.
12 * Creates a new instance of FeedDate representing a given date.
13 * Accepts RFC 822, ISO 8601 date formats (or anything that PHP's DateTime
16 * @param mixed $dateString optional the date this FeedDate will represent. If not specified, the current date and
22 $dateString = date("r");
37 * Gets the date stored in this FeedDate as an RFC 822 date.
39 * @return string a date in RFC 822 format
44 $date
[all...]
H A DFeedItem.php22 * Publishing date of an item. May be in one of the following formats:
31 public $date; variable in FeedItem
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/
H A Dconstants.php4 define("TIME_ZONE", date("O", time()));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php97 * Default date format
1010 $date = new \DateTime($source, new \DateTimeZone('GMT'));
1012 $date->setTimezone(new \DateTimeZone('GMT'));
1013 $value = $date->format($format) . 'Z';
1297 * Sets the time / date format for asn1map().
H A DX509.php1084 * Validate a date
1086 * If $date isn't defined it is assumed to be the current date.
1088 * @param \DateTimeInterface|string $date optional
1091 public function validateDate($date = null)
1097 if (!isset($date)) {
1098 $date = new \DateTimeImmutable('now', new \DateTimeZone(@date_default_timezone_get()));
1107 if (is_string($date)) {
1108 $date = new \DateTimeImmutable($date, ne
2114 validateDate($date = null) global() argument
3592 _timeField($date) global() argument
4086 setStartDate($date) global() argument
4101 setEndDate($date) global() argument
4867 revoke($serial, $date = null) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md31 - Item::get_date(): fix return type on unparsable date by @jtojnar in [#753](https://github.com/simplepie/simplepie/pull/753)
272 * `rss:pubDate` is now used over `atom:updated` when determining the posting date. [#288](https://github.com/simplepie/simplepie/pull/288)
275 * Fixed typo in the date parser that incorrectly identified September as month 8. [#348](https://github.com/simplepie/simplepie/pull/348)
277 * Fixed a bug where the updated date was not fetched correctly. [#239](https://github.com/simplepie/simplepie/pull/239)
281 * Fixed a PHP notice that occurs when a date starts with `(`. [#348](https://github.com/simplepie/simplepie/pull/348)
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE170 stating that you changed the files and the date of any change.
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DMySQL.php224 if (!($date = $prepared[1][$new_id]->get_date('U'))) {
225 $date = time();
228 $query = $this->mysql->prepare('INSERT INTO `' . $this->options['extras']['prefix'] . 'items` (`feed_id`, `id`, `data`, `posted`) VALUES(:feed, :id, :data, :date)');
232 $query->bindValue(':date', $date);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DItem.php637 * Get the posting date/time for the item
640 * `<atom:modified>`, `<pubDate>` or `<dc:date>`
642 * Note: obeys PHP's timezone setting. To get a UTC date/time, use
647 * @param string $date_format Supports any PHP date format from {@see http://php.net/date} (empty for the raw data)
652 if (!isset($this->data['date'])) {
654 $this->data['date']['raw'] = $return[0]['data'];
656 $this->data['date']['raw'] = $return[0]['data'];
657 } elseif ($return = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_DC_11, 'date')) {
658 $this->data['date']['ra
[all...]
H A DParser.php584 $pub_date = date('F j Y g:ia', $timestamp).' GMT';
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php62 public $date; variable in SimplePie\\Parse\\Date
634 * Parse a date
638 * @param string $date Date to parse
639 * @return int Timestamp corresponding to date string, or false on failure
641 public function parse($date) argument
644 if (($returned = call_user_func($method, $date)) !== false) {
650 if (($returned = call_user_func([$this, $method], $date)) !== false) {
659 * Add a callback method to parse a date
682 public function date_w3cdtf($date) argument
722 if (preg_match($pcre, $date,
805 date_rfc2822($date) global() argument
884 date_rfc850($date) global() argument
940 date_asctime($date) global() argument
978 date_strtotime($date) global() argument
[all...]

123