为什么严格比较 strpos() 和 true 会得到相反的预期结果?
为什么这个独立代码不起作用:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如有疑问,请阅读文档:
因此,您想尝试类似的操作:
因为否则
strpos
将返回一个数字,而您正在寻找布尔值true
。When in doubt, read the docs:
So you want to try something more like:
Because otherwise
strpos
is returning a number, and you're looking for a booleantrue
.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.
你的失败条件是错误的。
如果未找到匹配,strpos 返回 false,因此您需要显式检查
Your failure condition is wrong.
strpos returns false if match is not found, so you need to explicitly check
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
strpos
函数可能返回布尔值 FALSE,但也可能返回计算结果为 FALSE 的非布尔值。
所以我这样做了
strpos
function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE.
So I did like this