They both seem to do the same thing: return the output buffer content to you and delete it aftewards.

Which one should I use?

link|improve this question
5  
Withdrawing my downvote because I too am confused by the descriptions in the manual (It's not perfectly clear whether "flush" means "output", which I think it does) – Pekka Sep 11 '11 at 16:51
...so nobody knows? – EEka Sep 11 '11 at 16:54
4  
Patience, young padawan! It's been only 6 minutes and 10 page views. – Juhana Sep 11 '11 at 16:55
2  
@EEka: This system is not that naive - remember that it knows who you are :-) – home Sep 11 '11 at 16:58
1  
@Pekka Yup, in the context of php output buffering, flushing means actually sending the data. – phihag Sep 11 '11 at 17:03
show 1 more comment
feedback

4 Answers

up vote 2 down vote accepted

To directly try to answer your question:

If you wish to begin output buffering again after flushing the buffer, then use ob_get_clean as output buffering will still be ready without having turn it back on. (remember this can only be used if no text, even whitespace is echo'd to the browser). Thus for more general uses, all my programming books err towards ob_get_flush (as only one buffer per most scripts)

link|improve this answer
feedback

ob_get_clean() removes the buffer (without printing it), and returns its content.

ob_get_flush() prints the buffer, removes it, and returns its content.

link|improve this answer
+1. Beat me to it! – Shef Sep 11 '11 at 17:01
+1 And me too ;) – phihag Sep 11 '11 at 17:02
feedback

ob_get_clean will just return the contents of the buffer and assign it to whatever variable you want it to, but it will not output anything.

ob_get_flush on the other hand, does everything that ob_get_clean does, but it also outputs the content.

link|improve this answer
feedback

ob_get_clean discards the current buffer, but does not change buffering options.

ob_get_flush flushes(i.e. sends, and thereby discards) the buffer and turns off output buffering.

Both return the previous value of the buffer.

link|improve this answer
+1 for mentioning ob_get_flush turns off buffering – NullUserException Sep 11 '11 at 17:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.