whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
IO
/
Upload File:
files >> /home/kckglobal/www/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; }
Copyright ©2021 || Defacer Indonesia