public function vfsStreamFile::seek in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamFile.php \org\bovigo\vfs\vfsStreamFile::seek()
seeks to the given offset
Parameters
int $offset:
int $whence:
Return value
bool
File
- vendor/
mikey179/ vfsStream/ src/ main/ php/ org/ bovigo/ vfs/ vfsStreamFile.php, line 242
Class
- vfsStreamFile
- File container.
Namespace
org\bovigo\vfsCode
public function seek($offset, $whence) {
return $this->content
->seek($offset, $whence);
}