gpt4 book ai didi

PHP 不会比较相同的字符串

转载 作者:可可西里 更新时间:2023-10-31 23:57:37 25 4
gpt4 key购买 nike

如果我显示 $d[0] 它是 liam.schnell@gmail.com 但它拒绝接受 if...

$d = file("mails.txt");
if ($d[0] == "liam.schnell@gmail.com") {
echo "JOW!";
}
echo $d[0];

有什么想法吗?

最佳答案

尝试调用 trim function$d[0] 上,这将删除字符串开头和结尾的所有换行符。

        $d = file("mails.txt");
if(trim($d[0])=="liam.schnell@gmail.com"){
echo "JOW!";
}
echo $d[0];

或者根本不包括任何新行:

        $d = file("mails.txt", FILE_IGNORE_NEW_LINES);
if($d[0]=="liam.schnell@gmail.com"){
echo "JOW!";
}
echo $d[0];

Each line in the resulting array will include the line ending, unless FILE_IGNORE_NEW_LINES is used, so you still need to use rtrim() if you do not want the line ending present.

发件人:http://php.net/manual/en/function.file.php

关于PHP 不会比较相同的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5518941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com