使用stripos定义多个针

时间:2011-04-20 06:38:07

标签: php strpos

如何定义多个针并仍然执行以下相同的操作。我试图定义额外的关键字,如数字,数字等...截至目前,我必须创建一个复制if循环与次要关键字更改。

if (stripos($data, 'digits') !== false) {
$arr = explode('+', $data);

for ($i = 1; $i < count($arr); $i += 2) {
    $arr[$i] = preg_replace('/\d/', '', $arr[$i]);
}

$data = implode('+', $arr);
}

3 个答案:

答案 0 :(得分:3)

创建一个循环数组的函数?

function check_matches ($data, $array_of_needles)
{
   foreach ($array_of_needles as $needle)
   {
        if (stripos($data, $needle)!==FALSE)
        {
             return true;
        }
   }

   return false;
}

if (check_matches($data, $array_of_needles))
{
   //do the rest of your stuff
}

- 编辑添加的分号

答案 1 :(得分:0)

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

用法:

$array  = array('1','2','3','etc');

if (strposa($data, $array)) {
  $arr = explode('+', $data);

  for ($i = 1; $i < count($arr); $i += 2) {
    $arr[$i] = preg_replace('/\d/', '', $arr[$i]);
  }

  $data = implode('+', $arr);

} else {
  echo 'false';
}

取自https://stackoverflow.com/a/9220624/1018682

的功能

答案 2 :(得分:0)

虽然之前的答案是正确的,但我想添加所有可能的组合,比如你可以将针作为数组或字符串或整数传递。
为此,您可以使用以下代码段。

function strposAll($haystack, $needles){
    if(!is_array($needle)) $needles = array($needles); // if the $needle is not an array, then put it in an array
    foreach($needles as $needle)
        if( strpos($haystack, $needle) !== False ) return true;
    return false;
}

现在,您可以将第二个参数用作数组或字符串或整数,无论​​您想要什么。