php常用字符串查找函数strstr()与strpos()实例分析

这篇文章主要介绍了php常用字符串查找函数strstr()与strpos(),结合具体实例形式分析了php字符串查找函数strstr()与strpos()的具体功能、用法、区别及相关操作注意事项,需要的朋友可以参考下。

本文实例讲述了php常用字符串查找函数strstr()与strpos()。分享给大家供大家参考,具体如下:

一句话使用strpos判断 ===或!==,这样才能达到预期的效果,性能要比strstr要好,只是判断是否包含某个字符串就用这个了。

string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )

1、$haystack被查找的字符串,$needle要查找的内容

2、如查找到则返回字符串的一部分,如没找到则返回FALSE

3、该函数区分大小写,如果想要不区分大小写,请使用 stristr()

4、如果你仅仅想确定needle是否存在于haystack中请使用速度更快、耗费内存更少的strpos()函数

  1. <?php
  2. $email = 'name@example.com';
  3. $domain = strstr($email,'@');
  4. $name = strstr($email,'@',TRUE);
  5. $no_con = strstr($email,'99');
  6. echo $domain; //输出 @example.com
  7. echo $name; //输出name 从 PHP 5.3.0 起
  8. var_dump($no_con); //如果没找到,则返回布尔值 FALSE
  9. ?>

运行结果:

@example.com

name

bool(false)

mixed strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )

1、$haystack被查找的字符串,$needle要查找的内容

2、返回 needle 在 haystack 中首次出现的数字位置

3、该函数区分大小写,如果想要不区分大小写,请使用 stripos()

4、返回值,如找到的话,返回needle 存在于 haystack 字符串起始的位置(注意字符串位置是从0开始,而不是从1开始),没找到则返回FALSE,但也可能返回等同于 FALSE 的非布尔值。

  1. <?php
  2. $mystring = 'abc' ;
  3. $findme = 'a' ;
  4. $pos = strpos($mystring,$findme);
  5. echo $pos; //输出0,既是当前a的位置
  6. ?>

运行结果:0

这里2个比较相似的函数,在这里简单介绍下,只需记住有这个函数即可,用时简单看下手册。

1、strrpos(),计算指定字符串在目标字符串中最后一次出现的位置

实例1 使用 ===

  1. <?php
  2. $mystring = 'abc';
  3. $findme = 'a';
  4. $pos = strpos($mystring, $findme);
  5. // 注意这里使用的是 ===。简单的 == 不能像我们期待的那样工作,
  6. // 因为 'a' 是第 0 位置上的(第一个)字符。
  7. if ($pos === false) {
  8. echo "The string '$findme' was not found in the string '$mystring'";
  9. } else {
  10. echo "The string '$findme' was found in the string '$mystring'";
  11. echo " and exists at position $pos";
  12. }
  13. ?>

实例2 使用 !==

  1. <?php
  2. $mystring = 'abc';
  3. $findme = 'a';
  4. $pos = strpos($mystring, $findme);
  5. // 使用 !== 操作符。使用 != 不能像我们期待的那样工作,
  6. // 因为 'a' 的位置是 0。语句 (0 != false) 的结果是 false。
  7. if ($pos !== false) {
  8. echo "The string '$findme' was found in the string '$mystring'";
  9. echo " and exists at position $pos";
  10. } else {
  11. echo "The string '$findme' was not found in the string '$mystring'";
  12. }
  13. ?>

实例3 使用位置偏移量

  1. <?php
  2. // 忽视位置偏移量之前的字符进行查找
  3. $newstring = 'abcdef abcdef';
  4. $pos = strpos($newstring, 'a', 1); // $pos = 7, 不是 0
  5. ?>

注释

Note: 此函数可安全用于二进制对象。

2、strripos(),计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)

总结:注意这几个函数如果没找到时则会返回FALSE,故在判断两边是否相等时候(if),注意两边的类型,以上几个函数,是在PHP中比较常用的字符串查找函数了,如需更强大功能的话,如邮箱、手机号的匹配、验证的话,则需借助正则表达式完成。