Function DebugFsStreamWrapper->stream_read

Definitions

sources/debug_fs.php

  • Binary-safe file read.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$count integer No No required parameter N/A N/A Maximum length to read

Returns

  • The read data (false: error)
  • Type: ~string
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Binary-safe file read.
 *
 * @param  integer $count Maximum length to read
 * @return ~string The read data (false: error)
 */

public function stream_read(int $count)