这是显示 html 输出的两种方法:function与include。访问文件系统而不是访问内存时是否会影响性能?如果每个页面加载有几十个甚至几百个包含,这在什么时候会成为问题?
选项 1:使用函数的 Html 显示循环
foreach ($items as $item){
displayItem($item);
}
function displayItem($item){ ?>
<html output>
<?php }
选项 2:使用包含的Html 显示循环
foreach ($items as $item){
include $path . 'displayItem.php';
}
//inside displayItem.php:
<html output>