有没有办法在 PHP 中向 foreach 方程添加 where 类。
目前我正在像这样向 foreach 添加一个 if 。
<?php foreach($themes as $theme){
if($theme['section'] == 'headcontent'){
//Something
}
}?>
<?php foreach($themes as $theme){
if($theme['section'] == 'main content'){
//Something
}
}?>
大概 PHP 必须遍历每个结果的所有结果。有没有更有效的方法来做到这一点。就像是
foreach($themes as $theme where $theme['section'] == 'headcontent')
可以这样做吗