Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/IO/SeekWriteStreamHandle.php
Назад
<?php declare(strict_types=1); namespace Psl\IO; use Psl\IO; /** * @codeCoverageIgnore */ final class SeekWriteStreamHandle implements SeekWriteStreamHandleInterface { use IO\WriteHandleConvenienceMethodsTrait; private SeekWriteStreamHandleInterface $handle; /** * @param resource $stream */ public function __construct(mixed $stream) { $this->handle = new Internal\ResourceHandle($stream, read: false, write: true, seek: true, close: false); } /** * {@inheritDoc} */ public function tryWrite(string $bytes): int { return $this->handle->tryWrite($bytes); } /** * {@inheritDoc} */ public function write(string $bytes, ?float $timeout = null): int { return $this->handle->write($bytes, $timeout); } /** * {@inheritDoc} */ public function seek(int $offset): void { $this->handle->seek($offset); } /** * {@inheritDoc} */ public function tell(): int { return $this->handle->tell(); } /** * {@inheritDoc} */ public function getStream(): mixed { return $this->handle->getStream(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка