HTML出力を表示する2つの方法があります:functionとinclude。メモリにアクセスするのではなく、ファイルシステムにアクセスするときにパフォーマンスが低下しますか?各ページの読み込みに数十、さらには数百のインクルードがある場合、これはどの時点で問題になりますか?
オプション1:関数を使用したHTML表示ループ
foreach ($items as $item){
displayItem($item);
}
function displayItem($item){ ?>
<html output>
<?php }
オプション2:includeを使用したHTML表示ループ
foreach ($items as $item){
include $path . 'displayItem.php';
}
//inside displayItem.php:
<html output>