Überprüfen Sie, ob das zweite Array alle Werte vom ersten Element -PHP enthält

$containsAllValues = !array_diff($search_this, $all);
Lokesh003Coding