content.php
ob_start();
OOXX;
$ooxx = ob_get_clean();
template.php
echo $ooxx;
原作用ob_start函数把OOXX的内容输出到template,有替代的方法吗?这个好像很占内存,我觉得没必要缓冲~
查到了,可以解析变量,函数不行,我还是将就着用吧~ http://thinkdiff.net/php/alternative-way-of-assigning-html-in-php-php-tips/
content.php
$ooxx = <<<EOD
OOXX, blah blah blah....
EOD;
template.php
echo $ooxx;