Файловый менеджер - Редактировать - /home/lmsyaran/public_html/j3/plugins/system/hdpreplyviaemail/lib/vendor/ddeboer/imap/src/ImapResource.php
Назад
<?php declare(strict_types=1); namespace Ddeboer\Imap; use Ddeboer\Imap\Exception\InvalidResourceException; use Ddeboer\Imap\Exception\ReopenMailboxException; /** * An imap resource stream. */ final class ImapResource implements ImapResourceInterface { /** * @var mixed */ private $resource; /** * @var null|MailboxInterface */ private $mailbox; /** * @var null|string */ private static $lastMailboxUsedCache; /** * Constructor. * * @param resource $resource */ public function __construct($resource, MailboxInterface $mailbox = null) { $this->resource = $resource; $this->mailbox = $mailbox; } /** * Get IMAP resource stream. * * @throws InvalidResourceException * * @return resource */ public function getStream() { if (false === \is_resource($this->resource) || 'imap' !== \get_resource_type($this->resource)) { throw new InvalidResourceException('Supplied resource is not a valid imap resource'); } $this->initMailbox(); return $this->resource; } /** * Clear last mailbox used cache. */ public function clearLastMailboxUsedCache(): void { self::$lastMailboxUsedCache = null; } /** * If connection is not currently in this mailbox, switch it to this mailbox. */ private function initMailbox(): void { if (null === $this->mailbox || self::isMailboxOpen($this->mailbox, $this->resource)) { return; } \imap_reopen($this->resource, $this->mailbox->getFullEncodedName()); if (self::isMailboxOpen($this->mailbox, $this->resource)) { return; } throw new ReopenMailboxException(\sprintf('Cannot reopen mailbox "%s"', $this->mailbox->getName())); } /** * Check whether the current mailbox is open. * * @param mixed $resource */ private static function isMailboxOpen(MailboxInterface $mailbox, $resource): bool { $currentMailboxName = $mailbox->getFullEncodedName(); if ($currentMailboxName === self::$lastMailboxUsedCache) { return true; } self::$lastMailboxUsedCache = null; $check = \imap_check($resource); $return = false !== $check && $check->Mailbox === $currentMailboxName; if (true === $return) { self::$lastMailboxUsedCache = $currentMailboxName; } return $return; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка