public function PharStreamWrapper::stream_seek in Drupal 7
Parameters
int $offset:
int $whence:
Return value
bool
File
- misc/
typo3/ phar-stream-wrapper/ src/ PharStreamWrapper.php, line 296
Class
Namespace
TYPO3\PharStreamWrapperCode
public function stream_seek($offset, $whence = SEEK_SET) {
return $this
->invokeInternalStreamWrapper('fseek', $this->internalResource, $offset, $whence) !== -1;
}