web-dev-qa-db-ja.com

文字列に配列にWordが含まれているかどうかを確認します

これはチャットページ用です。 _$string = "This dude is a mothertrucker"_があります。 badwordsの配列があります:$bads = array('truck', 'shot', etc)。 _$string_に_$bad_の単語が含まれているかどうかを確認するにはどうすればよいですか?
これまでのところ:

_        foreach ($bads as $bad) {
        if (strpos($string,$bad) !== false) {
            //say NO!
        }
        else {
            // YES!            }
        }
_

これを行う場合を除き、ユーザーが_$bads_リストにWordを入力すると、出力はNOです!続いてYES!そのため、何らかの理由でコードが2回実行しています。

18
user1879926
function contains($str, array $arr)
{
    foreach($arr as $a) {
        if (stripos($str,$a) !== false) return true;
    }
    return false;
}
63
Nirav Ranpara

1)最も簡単な方法:

if ( in_array( 'eleven',  array('four', 'eleven', 'six') ))
...

2)別の方法(別の配列に向かって配列をチェックしながら):

$keywords=array('one','two','three');
$targets=array('eleven','six','two');
foreach ( $targets as $string ) 
{
  foreach ( $keywords as $keyword ) 
  {
    if ( strpos( $string, $keyword ) !== FALSE )
     { echo "The Word appeared !!" }
  }
}
11
T.Todua

あなたのコードの代わりにこれを試してください

$string = "This dude is a mothertrucker";
$bads = array('truck', 'shot');
foreach($bads as $bad) {
    $place = strpos($string, $bad);
    if (!empty($place)) {
        echo 'Bad Word';
        exit;
    } else {
        echo "Good";
    }
}
9
Sanjay

不良なWord配列を反転し、同じチェックをはるかに高速に実行できます。不良な各Wordを配列のキーとして定義します。例えば、

//define global variable that is available to too part of php script
//you don't want to redefine the array each time you call the function
//as a work around you may write a class if you don't want global variable
$GLOBALS['bad_words']= array('truck' => true, 'shot' => true);

function containsBadWord($str){
    //get rid of extra white spaces at the end and beginning of the string
    $str= trim($str);
    //replace multiple white spaces next to each other with single space.
    //So we don't have problem when we use explode on the string(we dont want empty elements in the array)
    $str= preg_replace('/\s+/', ' ', $str);

    $Word_list= explode(" ", $str);
    foreach($Word_list as $Word){
        if( isset($GLOBALS['bad_words'][$Word]) ){
            return true;
        }
    }
    return false;
}

$string = "This dude is a mothertrucker";

if ( !containsBadWord($string) ){
    //doesn't contain bad Word
}
else{
    //contains bad Word
}

このコードでは、不良ワードを不良ワードリスト内のすべてのワードと比較するのではなく、インデックスが存在するかどうかを確認しています。
issetはin_arrayよりもはるかに高速で、array_key_existsよりもわずかに高速です。
無効なWord配列の値がどれもnullに設定されていないことを確認してください。
issetは、配列インデックスがnullに設定されている場合、falseを返します。

4
Abhijit Amin

このように悪い言葉を見つけたら、置いて出て死ぬか

foreach ($bads as $bad) {
 if (strpos($string,$bad) !== false) {
        //say NO!
 }
 else {
        echo YES;
        die(); or exit;            
  }
}
2
Sanjay

この方法でもフィルターを実行できます

$string = "This dude is a mothertrucker";
if (preg_match_all('#\b(truck|shot|etc)\b#', $string )) //add all bad words here.       
    {
  echo "There is a bad Word in the string";
    } 
else {
    echo "There is no bad Word in the string";
   }
1
eldhose

これが欲しかった?

$string = "This dude is a mothertrucker"; 
$bads = array('truck', 'shot', 'mothertrucker');

    foreach ($bads as $bad) {
        if (strstr($string,$bad) !== false) {
            echo 'NO<br>';
        }
        else {
            echo 'YES<br>';
        }
    }
1
Lenin

チャット文字列がそれほど長くなければ、私はそのようにします。

$badwords = array('motherfucker', 'ass', 'hole');
$chatstr = 'This dude is a motherfucker';
$chatstrArr = explode(' ',$chatstr);
$badwordfound = false;
foreach ($chatstrArr as $k => $v) {
    if (in_array($v,$badwords)) {$badwordfound = true; break;}
    foreach($badwords as $kb => $vb) {
        if (strstr($v, $kb)) $badwordfound = true;
        break;
    }
}
if ($badwordfound) { echo 'Youre nasty!';}
else echo 'GoodGuy!';
0
Graben

次のようにstr_ireplaceを使用する文字列内の不適切な単語を識別するために使用できる非常に短いphpスクリプトがあります。

$string = "This dude is a mean mothertrucker";
$badwords = array('truck', 'shot', 'ass');
$banstring = ($string != str_ireplace($badwords,"XX",$string))? true: false;
if ($banstring) {
   echo 'Bad words found';
} else {
    echo 'No bad words in the string';
}

単一行:

$banstring = ($string != str_ireplace($badwords,"XX",$string))? true: false;

すべての作業を行います。

0
Clinton
 $string = "This dude is a good man";   
 $bad = array('truck','shot','etc'); 
 $flag='0';         
 foreach($bad as $Word){        
    if(in_array($Word,$string))        
    {       
        $flag=1;       
    }       
}       
if($flag==1)
  echo "Exist";
else
  echo "Not Exist";
0
Jumper Pot

Array_intersect()を使用する場合は、以下のコードを使用します。

function checkString(array $arr, $str) {

  $str = preg_replace( array('/[^ \w]+/', '/\s+/'), ' ', strtolower($str) ); // Remove Special Characters and extra spaces -or- convert to LowerCase

  $matchedString = array_intersect( explode(' ', $str), $arr);

  if ( count($matchedString) > 0 ) {
    return true;
  }
  return false;
}
0
Irshad Khan