将STDOUT从包含文件捕获到变量

时间:2011-03-27 18:22:34

标签: php

如何捕获包含文件到变量或其他文件的所有内容。

2 个答案:

答案 0 :(得分:3)

输出缓冲是可行的方法。

<?php

ob_start(); // Start buffering output

include '/path/to/file/';

$myVariable = ob_get_clean(); // Put the buffered output
                              // into $myVariable and clear
                              // the output buffer

http://www.php.net/manual/en/function.ob-start.php

http://www.php.net/manual/en/function.ob-get-clean.php

答案 1 :(得分:0)