php检查多个值的字符串

时间:2013-04-07 20:46:12

标签: php arrays string search if-statement

我正在尝试构建一个函数,我可以使用它来检查字符串中的多个值,在haystack函数类中的泛型查找针。我已将值拆分为数组并尝试循环遍历数组并使用for循环检查字符串的值,但没有遇到预期的结果。请参阅下面的功能,一些例子和预期结果。

功能

function find($haystack, $needle) {
    $needle = strtolower($needle);
    $needles = array_map('trim', explode(",", $needle));

    foreach ($needles as $needle) {
        if (strpos($haystack, $needle) !== false) {
            return true;
        }
    }

    return false;
}

示例1

$type = 'dynamic'; // on a dynamic page, could be static, general, section, home on other pages depending on page and section

if (find($type, 'static, dynamic')) {
    // do something
} else {
    // do something
}

结果

这应该捕获$ type是包含静态还是动态的条件,并根据页面运行相同的代码。

示例2

$section = 'products labels'; // could contain various strings generated by site depending on page and section

if (find($section, 'products')) {
    // do something
} elseif (find($section, 'news')) {
    // do something
} else {
    // do something
}

结果

如果$ section在新闻栏目的页面上的“新闻”产品部分中包含“产品”,则应特别注意这一条件。

-

在返回所需结果时似乎不可靠,无法弄清楚原因!任何帮助非常感谢!

3 个答案:

答案 0 :(得分:2)

这样的事可能

function strposa($haystack, $needles=array(), $offset=0) {
    $chr = array();
    foreach($needles as $needle) {
            $res = strpos($haystack, $needle, $offset);
            if ($res !== false) $chr[$needle] = $res;
    }
    if(empty($chr)) return false;
    return min($chr);
}

然后

$string = 'Whis string contains word "cheese" and "tea".';
$array  = array('burger', 'melon', 'cheese', 'milk');

if (strposa($string, $array, 1)) {
    echo 'true';
} else {
    echo 'false';
}

由于奶酪,这将是真的

答案 1 :(得分:1)

为什么这里有一个可以派上用场的双向find

var_dump(find('dynamic', 'static, dynamic')); // expect true
var_dump(find('products labels', 'products')); // expect true
var_dump(find('foo', 'food foor oof')); // expect false

使用的功能

function find($str1, $str2, $tokens = array(" ",",",";"), $sep = "~#") {
    $str1 = array_filter(explode($sep, str_replace($tokens, $sep, strtolower($str1))));
    $str2 = array_filter(explode($sep, str_replace($tokens, $sep, strtolower($str2))));
    return array_intersect($str1, $str2) || array_intersect($str2, $str1);
}

答案 2 :(得分:1)

怎么样:

str_ireplace($needles, '', $haystack) !== $haystack;