Файловый менеджер - Редактировать - /home/lmsyaran/public_html/j3/plugins/system/hdpreplyviaemail/lib/vendor/ddeboer/imap/src/Search/AbstractDate.php
Назад
<?php declare(strict_types=1); namespace Ddeboer\Imap\Search; use DateTimeInterface; /** * Represents a date condition. */ abstract class AbstractDate implements ConditionInterface { /** * Format for dates to be sent to the IMAP server. * * @var string */ private $dateFormat; /** * The date to be used for the condition. * * @var DateTimeInterface */ private $date; /** * Constructor. * * @param DateTimeInterface $date optional date for the condition */ public function __construct(DateTimeInterface $date, string $dateFormat = 'j-M-Y') { $this->date = $date; $this->dateFormat = $dateFormat; } /** * Converts the condition to a string that can be sent to the IMAP server. */ final public function toString(): string { return \sprintf('%s "%s"', $this->getKeyword(), $this->date->format($this->dateFormat)); } /** * Returns the keyword that the condition represents. */ abstract protected function getKeyword(): string; }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка