reads the given amount of bytes from content
int $count:
string
Overrides FileContent::read
public function read($count) { $data = $this->doRead($this->offset, $count); $this->offset += $count; return $data; }