一个捕获函数输出的函数_php模板
程序员文章站
2023-12-22 17:11:52
...
刚写的一个简单函数,用来捕获任意一个函数的输出。也是一般模版系统的一个核心吧。
/**
* 捕获一个函数的输出
* example:get_output(array($this,'test'));
*/
function get_output($array)
{
ob_start();
call_user_func($array);
return ob_get_clean();
}
?>
复制代码 代码如下:
/**
* 捕获一个函数的输出
* example:get_output(array($this,'test'));
*/
function get_output($array)
{
ob_start();
call_user_func($array);
return ob_get_clean();
}
?>