2

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

功能

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 在新闻部分的页面上的产品部分的“新闻”页面上包含“产品”,这应该会特别捕获条件。

--

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

4

3 回答 3

3

像这样的东西也许

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';
}

这将是真的,因为奶酪

于 2013-04-07T20:53:46.100 回答
1

怎么样:

str_ireplace($needles, '', $haystack) !== $haystack;
于 2014-12-31T17:39:15.983 回答
1

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

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);
}
于 2013-04-07T21:05:17.520 回答