一个过滤函数

定义一个数组

包含所有非法字符串

写一个函数

当输入字符串中包含非法字符串时return false

function checkForbidPoi($from_name, $to_name, $forbidPoi){
    $isSend = true;
    foreach ($forbidPoi as $word) {
        if (strpos($from_name, $word) === false && strpos($to_name, $word) === false) {
           
        } else {
            $isSend = false;
            break;
        }
    }
    return $isSend;
}

$isSend = true放到佛foreach外面

可以有效减少循环次数

是一个很好的优化方法

你可能感兴趣的:(php,php)