tableau de filtre PHP contienne
array_filter(
$array,
function ($element) use ($to_remove) {
return strpos($element, $to_remove) === false;
}
);
Borma
array_filter(
$array,
function ($element) use ($to_remove) {
return strpos($element, $to_remove) === false;
}
);