public function SeekableFileContent::readUntilEnd in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/content/SeekableFileContent.php \org\bovigo\vfs\content\SeekableFileContent::readUntilEnd()
 
for backwards compatibility with vfsStreamFile::readUntilEnd()
Return value
string
File
- vendor/
mikey179/ vfsStream/ src/ main/ php/ org/ bovigo/ vfs/ content/ SeekableFileContent.php, line 125  
Class
- SeekableFileContent
 - Default implementation for file contents based on simple strings.
 
Namespace
org\bovigo\vfs\contentCode
public function readUntilEnd() {
  return substr($this
    ->content(), $this->offset);
}