public function PoStreamReader::setSeek

Sets the seek position for the current PO stream.

Parameters

int $seek: The new seek position to set.

File

drupal/core/lib/Drupal/Component/Gettext/PoStreamReader.php, line 213
Definition of Drupal\Component\Gettext\PoStreamReader.

Class

PoStreamReader
Implements Gettext PO stream reader.

Namespace

Drupal\Component\Gettext

Code

public function setSeek($seek) {
  fseek($this->_fd, $seek);
}