You are here

public function PoStreamReader::setSeek in Localization update 7.2

Sets the seek position for the current PO stream.

Parameters

int $seek: The new seek position to set.

File

includes/gettext/PoStreamReader.php, line 207
Contains \Drupal\Component\Gettext\PoStreamReader.

Class

PoStreamReader
Implements Gettext PO stream reader.

Code

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