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 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题
  • ¥15 使用Java milo连接Kepserver服务端报错?
  • ¥15 用ADS设计一款的射频功率放大器
  • ¥15 怎么求交点连线的理论解?
  • ¥20 软件开发方法学习来了
  • ¥15 微信小程序商城如何实现多商户收款 平台分润抽成
  • ¥15 HC32L176调试了一个通过TIMER5+DMA驱动WS2812B
  • ¥15 cocos的js代码调用wx.createUseInfoButton问题!
  • ¥15 关于自相关函数法和周期图法实现对随机信号的功率谱估计的matlab程序运行的问题,请各位专家解答!