为什么严格比较 strpos() 和 true 会得到相反的预期结果?

发布于 2024-10-15 05:27:05 字数 418 浏览 3 评论 0原文

为什么这个独立代码不起作用:

$link = 'https://google.com';
$unacceptables = ['https:','.doc','.pdf', '.jpg', '.jpeg', '.gif', '.bmp', '.png'];

foreach ($unacceptables as $unacceptable) {
    if (strpos($link, $unacceptable) === true) {
        echo 'Unacceptable Found<br />';
    } else {
        echo 'Acceptable!<br />';
    }
}

即使 https 包含在 $link 变量中,它每次打印都是可接受的。

Why isn't this standalone code working:

$link = 'https://google.com';
$unacceptables = ['https:','.doc','.pdf', '.jpg', '.jpeg', '.gif', '.bmp', '.png'];

foreach ($unacceptables as $unacceptable) {
    if (strpos($link, $unacceptable) === true) {
        echo 'Unacceptable Found<br />';
    } else {
        echo 'Acceptable!<br />';
    }
}

It's printing acceptable every time even though https is contained within the $link variable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

弄潮 2024-10-22 05:27:05

如有疑问,请阅读文档

[strpos] 返回 haystack 字符串中第一次出现 Needle 的数字位置。

因此,您想尝试类似的操作:

// ...
if (strpos($link, $unacceptable) !== false) {

因为否则 strpos 将返回一个数字,而您正在寻找布尔值 true

When in doubt, read the docs:

[strpos] Returns the numeric position of the first occurrence of needle in the haystack string.

So you want to try something more like:

// ...
if (strpos($link, $unacceptable) !== false) {

Because otherwise strpos is returning a number, and you're looking for a boolean true.

颜漓半夏 2024-10-22 05:27:05

strpos() 找到匹配项时不返回 true,而是返回位置第一个匹配的字符串。注意,如果匹配是字符串的开头,它将返回索引为零,除非您使用 === 运算符,否则该索引将比较为 false。

strpos() does not return true when it finds a match, it returns the position of the first matching string. Watchout, if the match is a the beginning of the string it will return an index of zero which will compare as equal to false unless you use the === operator.

乙白 2024-10-22 05:27:05

你的失败条件是错误的。

如果未找到匹配,strpos 返回 false,因此您需要显式检查

if (strpos($link, $unacceptable) !== false) {

Your failure condition is wrong.

strpos returns false if match is not found, so you need to explicitly check

if (strpos($link, $unacceptable) !== false) {
岁月打碎记忆 2024-10-22 05:27:05

Strpos 总是返回位置,就像您在字符串中搜索“httpsL”('https://google.com';) 一样,然后它返回第 0 个位置,PHP 将其评估为 false。

请参阅此链接:(希望它对您非常有用):
http://php.net/manual/en/function.strpos.php

Strpos always return position like you search "httpsL" in your string('https://google.com';) then it return 0th position and PHP evaluate it as false.

please see this link:(Hope its very usefull for you):
http://php.net/manual/en/function.strpos.php

风柔一江水 2024-10-22 05:27:05

strpos

函数可能返回布尔值 FALSE,但也可能返回计算结果为 FALSE 的非布尔值。

所以我这样做了

if (strpos($link, $unacceptable) !== false) {
    //Code
}

strpos

function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE.

So I did like this

if (strpos($link, $unacceptable) !== false) {
    //Code
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文