是否有可能(在 PHP 中)调用一个触发某些捕获过程的函数,以便捕获该函数之后的所有 HTML 输出直到结束函数?例如,一些分析应用程序执行与此非常相似的过程,并且使用诸如 之类的功能 ob_start()
,这对我来说似乎是合乎逻辑的。概念示例:
<?php beginSection("hello"); ?>
<b>Hi there!</b>
<?php endSecton("hello"); ?>
<!-- Section "hello" now contains "<b>Hi there!</b>" -->