如何获取介于?&gt;之间的内容?和<! - ?php - >

时间:2012-05-31 20:32:21

标签: php oop xhtml

getThis只是个人学习问题。我想检索我的函数$ page-&gt; content_start();之间的所有内容。和$ page-&gt; 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());
?>

1 个答案:

答案 0 :(得分:8)

使用output buffering

ob_start();
?>
<div class="asss_ass"></div>
<span></span>
<?php
$content = ob_get_clean();