Function __global->fgetc

Definitions

sources_custom/phpstub.php

  • Gets character from file pointer.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$handle resource No No required parameter N/A N/A Handle

Returns

  • Character (false: error)
  • Type: ~string
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Gets character from file pointer.
 *
 * @param  resource $handle Handle
 * @return ~string Character (false: error)
 */

function fgetc($handle)