php strrpos 检测不到字符串,始终为0位置

发布于 2024-12-25 05:54:26 字数 737 浏览 1 评论 0原文

大家好,这真是一个令人惊叹的问题。

我对 strrpos 有很多经验,但这确实没有意义。首先是数组:

arrCopy => {                
  ["Codice"]=>                
  string(33) "Per sport d è numerico"                
  ["Maniche"]=>                
  string(15) " maniche corte "                
  ...               
  ["Taglia"]=>                
  string(8) "tg tg XL"                
}

我想在 Foreach 循环中隔离“Taglia”的行为,但我无法检测到它!

foreach ($arrCopy as $key=>$spec){
         echo gettype($key); // prints string
         $tg= strpos(strtolower($key) , 'taglia'); // gives me 
//always 0 also with "Taglia" key
            if (  $tg !== false || ....
                 // never goes there

我哪里错了?

Hi guys this is really stunning questions.

I have many experience with strrpos but this is really out of sense . First the array:

arrCopy => {                
  ["Codice"]=>                
  string(33) "Per sport d è numerico"                
  ["Maniche"]=>                
  string(15) " maniche corte "                
  ...               
  ["Taglia"]=>                
  string(8) "tg tg XL"                
}

I want to isolate behaviour of "Taglia" in a Foreach loop, but I cannot detect it!

foreach ($arrCopy as $key=>$spec){
         echo gettype($key); // prints string
         $tg= strpos(strtolower($key) , 'taglia'); // gives me 
//always 0 also with "Taglia" key
            if (  $tg !== false || ....
                 // never goes there

Where I am wrong?

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

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

发布评论

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

评论(1

这个俗人 2025-01-01 05:54:26

您应该测试 strpos() 的 retval 是否为 FALSE,以确定是否包含该字符串。

来自 http://php.net/manual/en/function.strpos.php

此函数可能返回布尔值 FALSE,但也可能返回计算结果为 FALSE 的非布尔值,例如 0 或“”。请阅读有关布尔值的部分以获取更多信息。使用 === 运算符来测试该函数的返回值。

使用 strcmp 可能会更好 - 您不需要太多地尝试查找子字符串,而是确保匹配。

You should test the retval of strpos() against FALSE, to determine whether the string is contained.

From http://php.net/manual/en/function.strpos.php:

This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE, such as 0 or "". Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.

Probably better to use strcmp - you're not so much trying to find a substring, as to ensure a match.

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