Unix and Linux Discussions Tagged with output |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
8 |
31,131 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,772 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
3,975 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
6,324 |
Shell Programming and Scripting |
|
|
|
1 |
1,919 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
14,418 |
Shell Programming and Scripting |
|
|
|
1 |
2,761 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,732 |
Shell Programming and Scripting |
|
|
|
1 |
1,615 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,080 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
732 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,258 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,484 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,785 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,374 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,122 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
2,330 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,296 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
943 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,026 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,002 |
Shell Programming and Scripting |
|
|
|
2 |
2,330 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,378 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,611 |
Shell Programming and Scripting |
|
|
|
7 |
4,243 |
Shell Programming and Scripting |
|
|
|
4 |
2,785 |
Shell Programming and Scripting |
|
|
|
5 |
3,169 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,554 |
Shell Programming and Scripting |
|
|
|
6 |
4,259 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,088 |
Shell Programming and Scripting |
|
|
|
5 |
1,111 |
UNIX for Beginners Questions & Answers |
|
|
|
12 |
2,553 |
Shell Programming and Scripting |
|
|
|
2 |
10,785 |
Programming |
|
|
|
6 |
2,654 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,045 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,075 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,336 |
Shell Programming and Scripting |
|
|
|
2 |
2,591 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,520 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
1,841 |
UNIX for Beginners Questions & Answers |
OB_GET_FLUSH(3) 1 OB_GET_FLUSH(3)
ob_get_flush - Flush the output buffer, return it as a string and turn off output buffering
SYNOPSIS
string ob_get_flush (void )
DESCRIPTION
ob_get_flush(3) flushes the output buffer, return it as a string and turns off output buffering.
The output buffer must be started by ob_start(3) with PHP_OUTPUT_HANDLER_FLUSHABLE flag. Otherwise ob_get_flush(3) will not work.
Note
This function is similar to ob_end_flush(3), except that this function returns the buffer as a string.
RETURN VALUES
Returns the output buffer or FALSE if no buffering is active.
EXAMPLES
Example #1
ob_get_flush(3) example
<?php
//using output_buffering=On
print_r(ob_list_handlers());
//save buffer in a file
$buffer = ob_get_flush();
file_put_contents('buffer.txt', $buffer);
print_r(ob_list_handlers());
?>
The above example will output:
Array
(
[0] => default output handler
)
Array
(
)
SEE ALSO
ob_end_clean(3), ob_end_flush(3), ob_list_handlers(3).
PHP Documentation Group OB_GET_FLUSH(3)