You are here

public function PharStreamWrapper::stream_read in Drupal 7

Parameters

int $count:

Return value

string

File

misc/typo3/phar-stream-wrapper/src/PharStreamWrapper.php, line 282

Class

PharStreamWrapper

Namespace

TYPO3\PharStreamWrapper

Code

public function stream_read($count) {
  return $this
    ->invokeInternalStreamWrapper('fread', $this->internalResource, $count);
}