prova questa
codice:
function search($filename, $string) {
     $text = strtolower(implode('', file($filename)));
     return strpos($text, strtolower($string)) === false ? false : true;
}