Unix and Linux Discussions Tagged with output |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
8 |
9,486 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,718 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
2,853 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,254 |
Shell Programming and Scripting |
|
|
|
1 |
1,589 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
11,015 |
Shell Programming and Scripting |
|
|
|
1 |
2,153 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,711 |
Shell Programming and Scripting |
|
|
|
1 |
1,321 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,200 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
517 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,693 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,892 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,311 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,665 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,756 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
1,704 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,889 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
678 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,602 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,368 |
Shell Programming and Scripting |
|
|
|
2 |
1,977 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,209 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,113 |
Shell Programming and Scripting |
|
|
|
7 |
3,597 |
Shell Programming and Scripting |
|
|
|
4 |
2,041 |
Shell Programming and Scripting |
|
|
|
5 |
2,138 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,071 |
Shell Programming and Scripting |
|
|
|
6 |
2,645 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,652 |
Shell Programming and Scripting |
|
|
|
5 |
859 |
UNIX for Beginners Questions & Answers |
|
|
|
12 |
1,387 |
Shell Programming and Scripting |
|
|
|
2 |
10,219 |
Programming |
|
|
|
6 |
2,294 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
785 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,606 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,943 |
Shell Programming and Scripting |
|
|
|
2 |
2,237 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,347 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
976 |
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)