我通常这样编码:
$output .= 'custom code';
$output .= 'another line of custom code';
$output .= 'more code';
return $output;
现在我想使用ob_start()
,ob_get_contents()
和ob_get_clean()
。
在我的例子中使用它的最有效方法是什么?
答案 0 :(得分:1)
这将返回与给出的示例相同的内容:
ob_start();
echo 'custom code';
echo 'another line of custom code';
echo 'more code';
return ob_get_clean();