If you want to remove an array of  elements from another array that have a particular value(s) here’s a neat way of doing it without any looping:

// our initial array
$arr_main = array('blue', 'green', 'red', 'yellow', 'green', 'orange', 'yellow', 'indigo', 'red');

// remove the elements who's values are yellow or red
$arr_to_rem = array('red', 'yellow');

echo '
';
print_r($arr_main);
echo '

‘;

$arr_main = array_diff($arr_main, $arr_to_rem);

echo ‘

';
print_r($arr_main);
echo '

‘;

$arr_main = array_values($arr_main);
echo ‘

';
print_r($arr_main);
echo '

‘;

‘;

This is the output from the code above:

Array
(
    [0] => blue
    [1] => green
    [2] => red
    [3] => yellow
    [4] => green
    [5] => orange
    [6] => yellow
    [7] => indigo
    [8] => red
)
Array
(
    [0] => blue
    [1] => green
    [4] => green
    [5] => orange
    [7] => indigo
)
Array
(
    [0] => blue
    [1] => green
    [2] => green
    [3] => orange
    [4] => indigo
)


Enjoy!

0 Shares:
Leave a Reply

Your email address will not be published. Required fields are marked *

9 − 3 =

This site uses Akismet to reduce spam. Learn how your comment data is processed.

You May Also Like

Easily create a Zip file using PHP

Creating .ZIP archives using PHP can be just as simple as creating them on your desktop. PHP's ZIP class provides all the functionality you need!

Calculate folder and subfolders size with PHP

How to read the size of a directory using PHP? Here is a simple function which could help read the size of the directory, number of directories and the number of files in the given directory.