使用ob_start()和ob_get_clean()

时间:2016-07-22 17:30:47

标签: wordpress buffer

我通常这样编码:

$output .= 'custom code';
    $output .= 'another line of custom code';
$output .= 'more code';     

return $output;

现在我想使用ob_start()ob_get_contents()ob_get_clean()。 在我的例子中使用它的最有效方法是什么?

1 个答案:

答案 0 :(得分:1)

这将返回与给出的示例相同的内容:

ob_start();
echo 'custom code';
echo 'another line of custom code';
echo 'more code';
return ob_get_clean();