當通過PHP查詢數據時,如果我可以分開單獨的項目,它是否會顯着減慢頁面加載時間?PHP中的多個「foreach」查詢是否會減慢頁面加載速度?
例如,在一個時間在三個項目拉動:
<?php foreach ($example->get_items(0,3) as $item): ?>
對戰調用每個的分別:
<?php foreach ($example->get_items(0,1) as $item): ?>
<?php foreach ($example->get_items(0,1) as $item): ?>
<?php foreach ($example->get_items(0,1) as $item): ?>
:
我會,使你的代碼更清潔的方式去?它不是PHP核心的一部分。 – 2010-01-30 04:09:13
來自SimplePie(http://simplepie.org/) – user55655 2010-02-01 03:54:11