ob_start();
include("content.php");
$content = ob_get_clean();
include("header.php");
echo $content;
include("footer.php");content.php ilk dahil edilen dosya olur fakat tampona alır çıktı vermezsiniz, böylece header.php'de bu değişkenleri kullanabilirsiniz. content.php'de $_title, $_description tanımlamış olalım, header.php'de bu değişkenler oluşturulmuş mu diye kontrol edip ona göre davranabiliriz.
header.php
$_title = $_title ?? 'default title';
$_description = $_description ?? 'default description';