<?php
$start = microtime(true);
echo '<div style="display: none;">';
for($i=0; $i<=10000 ;$i++ ){
echo 'Bu Bir Test yazisidir Inline Outline Test Icin Olusturulmustur';
}
echo '</div>';
$end = microtime(true);
$sonuc = $end-$start;
$h = file_get_contents('sure-inline.txt');
file_put_contents('sure-inline.txt', $h . "
" . $sonuc);
?>
<?php
$start = microtime(true);
?><div style="display: none;"><?php
for($i=0; $i<=10000 ;$i++ ) {
?>Bu Bir Test yazisidir Inline Outline Test Icin Olusturulmustur<?php
}
?></div><?php
$end = microtime(true);
$sonuc = $end-$start;
$h = file_get_contents('sure.txt');
file_put_contents('sure.txt', $h . "
" . $sonuc);
?>
Her ikisini de 10 kez çalıştırdım ve çıktıyı PHP ile toplayıp 10'a böldüm. Sonuçlar şöyle:

0.0820019721985
0.07099609375

Aradaki fark 100 ms bile değil. Bunun tartışmasını yapmak saçma. Sizin önerdiğiniz tarzı okumak bana çok zor geliyor.

Hem ben zaten tema sistemi kullanıyorum. Ama yine PHP kullanıyorum. Çok da güzel oluyor.