fork(2) download
  1. <?php
  2.  
  3. $products = array('silverware with golden spoon new', 'silverware with golden spoon / new');
  4.  
  5. $item = 'silverware with golden spoon / new';
  6.  
  7. function in_array_r($item , $array){
  8. return preg_match('~"'.$item.'"~i', json_encode($array, JSON_UNESCAPED_SLASHES));
  9. }
  10.  
  11.  
  12. if(in_array_r($item, $products)){
  13. print "Match found!";
  14. }
  15. else {
  16. print "No match was found.";
  17. }
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Match found!