Hi there,

I am wondering if there is a function (I could not find) which does the same thing like strpos does, but with an array.

For example:

        $replace = array("picture", "pics");
        $pos = strpos ($term, $replace);
        if ($pos !== false) {
           $term = str_replace($replace, "", $term);
           echo 'term without the word:'.$term;
        }

This does of course not work since strpos does not take arrays.

Thank you for any help,

Merlin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to