9

I have some classes I am writing unit tests for which have echoes in them. I want to suppress this output and thought ob_start() and ob_clean() would suffice, but they aren't having an effect.

public function testSomething (){
    ob_start();
    $class = new MyClass();
    $class->method();
    ob_clean();
}

I've also tried variations such as ob_start(false, 0, true); and ob_end_clean() to no avail.

What am I missing?

bcmcfc
  • 25,966
  • 29
  • 109
  • 181
  • I've got the same issue, I've tried `ob_implicit_flush(false);` and checking the result of `ob_start()` to see if it starts, which apparently it does as it returns true. – Greg K Feb 01 '12 at 12:43
  • 1
    I too am having the same issue. Tried the implicit flush but no dice. – Jort Jun 24 '14 at 11:37

3 Answers3

2

you may want something like this

<?php
public function testSomething (){
    ob_start();
    ob_implicit_flush(false); // turn off implicit flush

// Make your output below
    $class = new MyClass();
    $class->method();
// End of output

// store output into variable:
    $output = ob_get_contents();
}
?>
thaolt
  • 475
  • 2
  • 7
0

The following solves this problem for me. Without calling ob_end_clean(), the contents of the buffer remain until the script's end, where it is flushed.

ob_implicit_flush(false);
ob_start();    
/*
  ...
  ... do something that pushes countent to the output buffer
  ...
*/    
$rendered = ob_get_contents();
ob_end_clean(); // Needed to clear the buffer
0

Do you have implicit_flush set to true in your PHP ini? This can cause the behaviour you are seeing as it tells PHP to tell the output layer to flush itself automatically after every output block. This is equivalent to calling the PHP function flush() after each and every call to print() or echo() and each and every HTML block.

Treffynnon
  • 21,365
  • 6
  • 65
  • 98
  • It's set to off in php.ini, although it says it's hardcoded to On for the CLI SAPI. I've added `ob_implicit_flush(false);` to no effect. – bcmcfc Mar 28 '11 at 15:36
  • I am not sure. Perhaps try setting it `false` before calling `ob_start()` if you haven't already. – Treffynnon Mar 28 '11 at 16:04