Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/IO/SeekHandleInterface.php
Назад
<?php declare(strict_types=1); namespace Psl\IO; /** * A handle that can have its' position changed. */ interface SeekHandleInterface extends HandleInterface { /** * Move to a specific offset within a handle. * * Offset is relative to the start of the handle - so, the beginning of the * handle is always offset 0. * * @param int<0, max> $offset * * @throws Exception\AlreadyClosedException If the handle has been already closed. * @throws Exception\RuntimeException If an error occurred during the operation. */ public function seek(int $offset): void; /** * Get the current pointer position within a handle. * * @throws Exception\AlreadyClosedException If the handle has been already closed. * @throws Exception\RuntimeException If an error occurred during the operation. * * @return int<0, max> */ public function tell(): int; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка