Допускается ли сохранение инклуда в переменную для последующего вывода этой переменной в другом файле?
// Файл function.php
switch($switch)
{
case 'guest':
$content='<h3>Гостевая книга</h3>';
$content.=include('gb_index.php');
$content.='<a href="index.php">На главную</a>';
break;
}
// Файл index.php
include_once('function.php') ;
echo $content;