整个数组

时间:2011-10-26 23:30:40

标签: php arrays email

所以我正在制作一个小型邮件表格,无论如何。

我想制作一系列无法​​通过电子邮件发送的电子邮件,

$nomail = array("hego556@yahoo.com","firevm@yahoo.com");
if($_POST["to"]!=$nomail)
  mail($_POST["to"],$_POST["subject"],$_POST["message"],$headers);
else
  echo "Not Allowed To Email That Email";

我该怎么做?

3 个答案:

答案 0 :(得分:4)

您正在寻找in_array

if (!in_array($_POST["to"], $nomail)) {

http://us3.php.net/in_array

答案 1 :(得分:1)

将第if($_POST["to"]!=$nomail)行更改为if (in_array($_POST['to'], $noemail))

Relevant

答案 2 :(得分:1)

$nomail = array('hego556@yahoo.com', 'firevm@yahoo.com');

if (!in_array($_POST['to'], $nomail)) {
    mail($_POST["to"],$_POST["subject"],$_POST["message"],$headers);
} else {
    echo 'Not Allowed To Email That Email';
}