doubutao6216 2017-02-07 11:14
浏览 49
已采纳

为什么$ str1不包含$ str2? (PHP strpos)

The code:

<?php
$str1 = "subidubidu";
$str2 = "subi";

if(strpos($str1,$str2)){
echo "Contains!";
}else{
echo "Not contains!";
} 
?> 

The result is "Not contains", and I'm curious about why exactly? May it be the problem, that "subi" is at the index of[0], and 0 returns with false? Any idea?

  • 写回答

4条回答 默认 最新

  • duanmao2774 2017-02-07 11:24
    关注

    You code is correct. But the problem is here:

    Explanation:

    strpos function return the index of containing string. And in your case, it is returning 0 as index of string. And 0 means false in programming. That's why your code executing else part.

    In case, if your string will be at the position of 1 or 2 and so on then code will work fine. But this will be false as the matching string is at 0th position.

    For future prospect, you have to put the value in a variable like this:

    $str1 = "subidubidu";
    $str2 = "subi";    
    $pos = strpos($str1, $str2);
    
    if ($pos != '' || $pos !== false) {
       echo 'Found it';
    } else {
       echo 'Not found.';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据