Function __global->fflush
Definitions
sources_custom/phpstub.php
- Flushes the output to a file.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $handle | resource | No | No | required parameter | N/A | N/A | The file handle to flush |
Returns
- Success status
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Flushes the output to a file.
*
* @param resource $handle The file handle to flush
* @return boolean Success status
*/
function fflush($handle) : bool
* Flushes the output to a file.
*
* @param resource $handle The file handle to flush
* @return boolean Success status
*/
function fflush($handle) : bool

