<?php $keywords = array ('Rock', 'Paper', 'sciSSors'); $strings = array ( "This town rocks!", "Hello, world!", "Paper is patient", ); $rc = preg_grep( sprintf('/%s/i', implode('|', array_map('preg_quote', $keywords))), $strings ); var_dump($rc);
You have javascript disabled. You will not be able to edit any code.