PHP command line output buffer outputs regardless of buffer settings

后端 未结 3 1666
轮回少年
轮回少年 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:05

    you may want something like this

    method();
    // End of output
    
    // store output into variable:
        $output = ob_get_contents();
    }
    ?>
    

提交回复
热议问题