public functiontell() : int {
if (!isset($this->stream)) {
thrownew\RuntimeException('Stream is detached');
}
$result = ftell($this->stream);
if ($result === false) {
thrownew\RuntimeException('Unable to determine stream position');
}
return$result;
}