<?php $fruits = ['apple', 'orange', 'melon', 'banana', 'pineapple']; foreach ($fruits as $key=>$fruit) { if (in_array($fruit, ['apple', 'orange', 'melon', 'banana'])) { unset($fruits[$key]); } } print_r($fruits);
You have javascript disabled. You will not be able to edit any code.