fork download
  1. <?php
  2.  
  3. $string = 'Power Red/Collegiate Burgundy/Black Hard/Silver Paradise';
  4. $array = explode('/', $string);
  5. $colors = array_map(function($s) {
  6. if (preg_match('/red|blue|black|burgundy|silver|pink/i', $s, $match)) {
  7. return $match[0];
  8. }
  9. }, $array);
  10. print_r($colors);
Success #stdin #stdout 0s 82944KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Red
    [1] => Burgundy
    [2] => Black
    [3] => Silver
)