Tagged Questions

7
votes
5answers
435 views

Is it better to use ob_get_contents() or $text .= ‘test’;

I have seen a lot of ob_get_clean() the last while. Typically I have done $test .= 'test' I'm wondering if one is faster and/or better than the other. Here is the code using ob_get_clean(): …