Cómo podría optimizar este código?
"webs" es un array de urls y quiero comparar $top, $med, $bot que también son urls, pero de estas tres url quiero obtener su ubicación (superior, media, inderior)
Código PHP:
Ver original
foreach ($webs as $web){ if($pos === false){ // string exo NOT found in adTop } else { // string exo found in adTop $counter = $contador->addCounterPos($web, 'top'); } } foreach($webs as $web){ if($pos === false){ // string web NOT found in med } else { // string web found in med $counter= $contador->addCounterPos($web, 'med'); } } foreach($webs as $web){ if($pos === false){ // string web NOT found in Bottom } else { // string web found in Bottom $counter= $contador->addCounterPos($web, 'bot'); } }
Muchas gracias