ob_start();     
include template($module, $template);    // include 也可以函数吗????
$data = ob_get_contents();  
ob_clean();   
然后就是这段代码是不是就是把 PHP 的执行结果保存下来?