Una roba del genere?
Codice PHP:<?php
function search($keys, $list) {
foreach ($keys as $value) {
if (in_array($value, $list)) {
return true;
}
}
return false;
}
$titolo = array("uno", "due", "tre", "quattro", "cinque", "sei", "sette", "otto");
$key_A = array("aaa", "bbb", "sei", "ddd", "eee");
$key_B = array("fff", "ggg", "sette", "hhh", "lll");
$foundA = search($key_A, $titolo);
$foundB = search($key_B, $titolo);
if ($foundA && !$foundB) {
// Fai qualcosa
}
?>

Rispondi quotando