我正在使用多个php脚本..“
包括我需要的库。问题是,它们旨在以echo
和print
或print_r
但是我需要使用它们而不是显示任何东西我关心的是它们的操作。有没有办法可以在不修改源代码的情况下压缩那些函数提供的输出?
答案 0 :(得分:4)
您可以使用output buffering,只需丢弃缓冲区:
ob_start();
function_that_prints_stuff_1();
function_that_prints_stuff_2();
// Done with the printing functions, discard the buffer:
ob_end_clean();
答案 1 :(得分:1)