PHP command line output buffer outputs regardless of buffer settings

后端 未结 3 1602
轮回少年
轮回少年 2021-02-08 19:28

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 s

相关标签:
3条回答
  • 2021-02-08 20:04

    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.

    0 讨论(0)
  • 2021-02-08 20:05

    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();
    }
    ?>
    
    0 讨论(0)
  • 2021-02-08 20:05

    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 讨论(0)
提交回复
热议问题