如何捕获包含文件到变量或其他文件的所有内容。
答案 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
答案 1 :(得分:0)