Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Is there any difference between these two pieces of PHP?

ob_start();
//code...
$pageContent = ob_get_contents();
ob_end_clean();
someFunction($pageContent);

vs

ob_start();
//code...
$pageContent=ob_get_clean();
someFunction($pageContent);

I am currently using the first block, but I would like to use the second instead if it is functionally equivalent, since it is a bit more concise.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
397 views
Welcome To Ask or Share your Answers For Others

1 Answer

To answer your question:

ob_get_clean() essentially executes both ob_get_contents() and ob_end_clean().

Yes. It is functionally equivalent.


Case 1:

ob_get_contents() + ob_end_clean():

ob_get_contents — Return the contents of the output buffer

ob_end_clean — Clean (erase) the output buffer and turn off output buffering

So, basically, you're storing the contents of the output buffer to a variable and then clearing it with ob_end_clean().

Case 2:

ob_get_clean — Get current buffer contents and delete current output buffer

You're storing the buffer contents to a variable and then the output buffer is deleted.


What you're doing is essentially the same. So, I don't see anything wrong with using the second code-block here, since they're both doing the same thing.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...