MVC (ob_start(), ob_get_contents() ob_end_clean()), , , .
, , , , .
404, ():
<?php
require "config.php";
$page = $_GET['page'];
ob_start();
if (isset($page)) {
echo "isset is true";
if (file_exists(MVCROOT."/$page.php")) {
include MVCROOT."/$page.php";
$output = ob_get_contents();
ob_end_clean();
echo $output;
} else {
ob_end_clean();
header("HTTP/1.0 404 Not Found");
include MVCROOT."/error_404.php";
}
}
?>
, .