所以在我的PHP代码中我试图让这段代码检查我的文本文件,看它是否存在字符串。但每当我把代码放入字符串是否存在时,如果字符串存在,则回显代码。
$addemail = $_POST["subemail"];
$searchfile = file_get_contents("emailist.txt");
if (!strpos($searchfile, "$addemail"))
{
echo "Your email is already in our database.";
}
else
{
code to be executed if string doesn't exist.
}
在此先感谢,这真让我难过:\
答案 0 :(得分:4)
您当前的代码所说的“您的电子邮件已在我们的数据库中”。如果电子邮件在数据库中不,或者它是第一封电子邮件(您应该始终使用===或!==与strpos进行比较)。代码应该是:
$addemail = $_POST['subemail'];
$searchfile = file_get_contents('emailist.txt');
if (strpos($searchfile, $addemail) === false)
{
//code to be executed if string doesn't exist.
}
else
{
echo "Your email is already in our database.";
}
答案 1 :(得分:1)
您应该使用以下语法:
$pos = strpos($searchfile, $addemail);
if ( $pos === false )
{
....
}
strpos()
可能返回布尔值FALSE,但也可能返回非布尔值,如果位置是第0个(第一个)字符,则计算结果为FALSE。
查看@ http://php.net/manual/en/function.strpos.php了解更多信息。
答案 2 :(得分:1)
假设电子邮件不在搜索文件中。 Ť
如果您的strpos
将返回false
。当你在一个被评估为false的表达式前添加否定时,它会将其变为true。
因此,如果电子邮件不在文件中,则您在文件中搜索电子邮件地址将成立。 你需要从条件中删除否定。
答案 3 :(得分:1)
您检查的$addemail
值是否可能位于文本文件的最开头?
strpos()返回另一个字符串中的一个字符串的偏移量。如果该字符串位于另一个字符串的开头,则该索引显然应为0
。如果找不到字符串,strpos()将返回false。自0 == false
0 !== false
以来,您可能希望将条件更改为if (strpos($searchfile, $addemail) !== false)
。
话虽如此,你应该注意到strpos()是区分大小写的。这意味着在查找me@EXAMPLE.org
时找不到me@example.org
。要解决此问题,您可以使用不区分大小写的兄弟stripos()。
答案 4 :(得分:0)
if (strpos($searchfile, "$addemail") === false) {
使用这样的条件......
看到这个警告...... http://php.net/manual/en/function.strpos.php#refsect1-function.strpos-returnvalues