Search Results

4
votes

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

Output buffers have all the pitfalls of global variables. You have to be aware of all execution paths from the ob_start() to the ob_get_clean(). Are you sure it will get …