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());
?>