Stream::tell()

Source

public function tell(): int
{
    if (!isset($this->stream)) {
        throw new \RuntimeException('Stream is detached');
    }
    if (\false === $result = @\ftell($this->stream)) {
        throw new \RuntimeException('Unable to determine stream position: ' . (\error_get_last()['message'] ?? ''));
    }
    return $result;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.