getThis 只是一个个人学习问题。我想检索我的函数 $page->content_start(); 之间的所有内容;和 $page->content_end(); 获得它的最佳方法是什么?我不想包含它或回应它,这可能吗?
非常感谢,非常感谢您的建议
<?php
include 'pages/indexpage.class.php';
include 'modules/monmodule.class.php';
$page = new IndexPage();
$mod = new MonModule($page);
$mod->create();
$page->content_start();
?>
<div class="asss_ass"></div>
<span></span>
<?php
$page->content_end();
print_r($page->get_content());
?>