以联系人形式发布基于PHP的过滤词

时间:2012-05-03 14:40:33

标签: php html function filter contact

我遇到了在联系表单邮件中过滤坏词的问题。 除了单词的第一个字母外,它会删除所有消息。 有帮助吗?

下面的

只是获取信息

<?php
$error = '';
if(!empty($_POST['username'])) $username = $_POST['username'];
if(!empty($_POST['email'])) $email = $_POST['email'];
if(!empty($_POST['subject'])) $subject = check($_POST['subject']);
if(!empty($_POST['message'])) $msg = filter($_POST['message']);

这是我试图用来删除坏词并替换它们的函数

$bad_words = array(
'word1' => 'gosh',
'word2' => 'darn',);

 function filter($matches) {
 global $bad_words;
 $replace = $bad_words[$matches[0]];
 return !empty($replace) ? $replace : $matches[0];
 }

检查下拉选项,但不允许通过电子邮件发送某些主题。

function check($str){
global $error;
if ($str == 'Mean Spirited Comment'){
  $error = 'You sent a Mean-Spirited Comment';
} else if ($str =='Political Comment'){
  $error = 'You sent a Political Comment';
}
 return $str;
}

放置信息并发送

$to = 'email@email.com';
 if (!empty($subject) && !empty($msg) && !empty($email) && !empty($username)){
if ($error == ''){
  mail($to, $subject, $msg, 'From:' . $email);
} else {
  print $error;
}
}

?>

1 个答案:

答案 0 :(得分:0)

你可以使用str_replace,因为它可以使用数组。

例如:

$message = "Hello there my good friends! I am very happy to see you all today even though I feel like crap.";
$badWords = array("Crap", "Damnit", "Frack");
echo str_replace($badWords, "*", $message);

结果将是:你好我的好朋友!今天我很高兴见到你,尽管我觉得*。

为什么在PHP已经提供了大量有用的方法时重新发明新方法?这应该足以从发送的消息中删除“坏词”。