duanqinqiao4844 2016-05-15 18:49
浏览 66
已采纳

php strpos没有返回任何值

So, my website is getting a significant amount of spam.

To filter out some of it, I wanted to test the body of the post to make sure it doesn't contain certain words. If they do, give the user an instant (temporary) ban.

Included is my code. I added an echo line to show the position returned, and tested with posts which did or did not include test words. For whatever reason, it always returns null, and nothing is displayed. Am I not allowed to pass a $_POST variable into this function?

Code:

    $bannedwords = array ("spam word", "foo", "bar", "foobar", "quarry");
foreach ($bannedwords as $bannedphrase) {
    $pos = strpos($_POST['body'], $bannedphrase);
    echo 'The position is: ' . $pos;
    if ($pos === FALSE){            
        //require_once 'inc/mod/ban.php';
        //Bans::new_ban($_SERVER['REMOTE_ADDR'], 'Suspected Spammer.', '2', $_POST['board'] == '*' ? false : $_POST['board']);
        error($config['error']['bannedword']);
    }       
}

EDIT: I do see a logic error here, though I don't think its what breaks the code. Maybe it is, however. If a user is banned early into the array, the if statement continues, which could be the reason I am seeing a null value later on?

  • 写回答

2条回答 默认 最新

  • dpno17028 2016-05-15 19:32
    关注

    As others have pointed out, you're testing the value backwards, since strpos will only return FALSE if the search string was NOT found. Also, echo your POST variable before you search it to make sure it is what you think it is.

    Try this code:

    $bannedwords = array ("spam word", "foo", "bar", "foobar", "quarry");
    
    if (isset($_POST['body'])) { echo 'POST: ', $_POST['body'], '<br/>'; }
    else { echo 'No POST variable found!'; }
    
    foreach ($bannedwords as $bannedphrase) 
    {
        $pos = strpos($_POST['body'], $bannedphrase);
    
        if ($pos === FALSE)
        {
            echo '  Banned word not found.';
        }
        else
        {
            echo '  Banned word found at position: ', $pos;
    
            //require_once 'inc/mod/ban.php';
            //Bans::new_ban($_SERVER['REMOTE_ADDR'], 'Suspected Spammer.', '2', $_POST['board'] == '*' ? false : $_POST['board']);
    
            error($config['error']['bannedword']);
            break; // This will exit the foreach loop
        }       
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部