详解PHP中mb_strpos的使用


Posted in PHP onFebruary 04, 2018

mb_strpos

(PHP 4 >= 4.0.6, PHP 5, PHP 7)
mb_strpos — Find position of first occurrence of string in a string
mb_strpos — 查找字符串在另一个字符串中首次出现的位置

Description

int mb_strpos ( 
  string $haystack , 
  string $needle [, 
  int $offset = 0 [, 
  string $encoding = mb_internal_encoding() ]] 
  )
//Finds position of the first occurrence of a string in a string.
// 查找 string 在一个 string 中首次出现的位置。

//Performs a multi-byte safe strpos() operation based on number of characters. The first character's position is 0, the second character position is 1, and so on.
// 基于字符数执行一个多字节安全的 strpos() 操作。 第一个字符的位置是 0,第二个字符的位置是 1,以此类推。

Parameters

haystack

  • The string being checked.
  • 要被检查的 string。

needle

  • The string to find in haystack. In contrast with strpos(), numeric values are not applied as the ordinal value of a character.
  • 在 haystack 中查找这个字符串。 和 strpos() 不同的是,数字的值不会被当做字符的顺序值。

offset

  • The search offset. If it is not specified, 0 is used. A negative offset counts from the end of the string.
  • 搜索位置的偏移。如果没有提供该参数,将会使用 0。负数的 offset 会从字符串尾部开始统计。

encoding

  • The encoding parameter is the character encoding. If it is omitted, the internal character encoding value will be used.
  • encoding 参数为字符编码。如果省略,则使用内部字符编码。

Return Values

  • Returns the numeric position of the first occurrence of needle in the haystack string. If needle is not found, it returns FALSE.
  • 返回 string 的 haystack 中 needle 首次出现位置的数值。 如果没有找到 needle,它将返回 FALSE。

Example

<?php
/**
 * Created by PhpStorm.
 * User: zhangrongxiang
 * Date: 2018/2/2
 * Time: 下午11:16
 */

$str = "Hello World! Hello PHP";
$pos = mb_strpos( $str, "Hello", 0, mb_internal_encoding() );
echo $pos . PHP_EOL;//0
$pos = mb_strpos( $str, "Hello", 2, mb_internal_encoding() );
echo $pos . PHP_EOL;//13

function mb_str_replace( $haystack, $search, $replace, $offset = 0, $encoding = 'auto' ) {
  $len_sch = mb_strlen( $search, $encoding );
  $len_rep = mb_strlen( $replace, $encoding );
  
  while ( ( $offset = mb_strpos( $haystack, $search, $offset, $encoding ) ) !== false ) {
    $haystack = mb_substr( $haystack, 0, $offset, $encoding )
          . $replace
          . mb_substr( $haystack, $offset + $len_sch,
        $le = mb_strlen( $haystack ) - mb_strlen( $search ) + mb_strlen( $replace ),
        $encoding );
    //echo $le.PHP_EOL;
    $offset = $offset + $len_rep;
    if ( $offset > mb_strlen( $haystack, $encoding ) ) {
      break;
    }
  }
  
  return $haystack;
}

$replace = mb_str_replace( "hello world !hello world !hello world !hello world !", "hello", "hi" );
echo $replace . PHP_EOL; //hi world !hi world !hi world !hi world !

//hi PHP !hi PHP !hi PHP !hi PHP !
echo mb_str_replace( $replace, "world", "PHP" ) . PHP_EOL;
echo mb_str_replace( $replace, " ", "-" ) . PHP_EOL;

//PHP是世界上最好的语言??????
echo mb_str_replace( "PHP是世界上最好的语言??????", '?', '?', 0, mb_internal_encoding() ) . PHP_EOL;
echo mb_str_replace( "112233445566", '22', '00' ) . PHP_EOL;//110033445566
echo mb_str_replace( '????', '?', '?1', 2, mb_internal_encoding() ) . PHP_EOL;
echo mb_str_replace( '1111', '111', '0', 1 ) . PHP_EOL;//10
echo mb_strlen( '????' ) . PHP_EOL;//4

//代码开发代码
echo mb_str_replace( '软件开发软件', '软件', '代码' ,0,mb_internal_encoding()) . PHP_EOL;
//代码开发 //todo??
echo mb_str_replace( '软件开发软件', '软件', '代码' ) . PHP_EOL;
PHP 相关文章推荐
无数据库的详细域名查询程序PHP版(4)
Oct 09 PHP
社区(php&amp;&amp;mysql)三
Oct 09 PHP
php不写闭合标签的好处
Mar 04 PHP
php数组中包含中文的排序方法
Jun 03 PHP
Codeigniter框架的更新事务(transaction)BUG及解决方法
Jul 25 PHP
2014最热门的24个php类库汇总
Dec 18 PHP
PHP获取毫秒级时间戳的方法
Apr 15 PHP
编写PHP脚本来实现WordPress中评论分页的功能
Dec 10 PHP
php ajax实现文件上传进度条
Mar 29 PHP
PHPCMS2008广告模板SQL注入漏洞修复
Oct 11 PHP
详解yii2使用多个数据库的案例
Jun 16 PHP
php面试实现反射注入的详细方法
Sep 30 PHP
详解PHP文件的自动加载(autoloading)
Feb 04 #PHP
PHP实现QQ登录的开原理和实现过程
Feb 04 #PHP
PHP实现正则表达式分组捕获操作示例
Feb 03 #PHP
php实现解析xml并生成sql语句的方法
Feb 03 #PHP
PHP删除数组中指定下标的元素方法
Feb 03 #PHP
php学习笔记之mb_strstr的基本使用
Feb 03 #PHP
php通过pecl方式安装扩展的实例讲解
Feb 02 #PHP
You might like
杏林同学录(九)
2006/10/09 PHP
一个php导出oracle库的php代码
2009/04/20 PHP
PHP GD 图像处理组件的常用函数总结
2010/04/28 PHP
基于Linux调试工具strace与gdb的常用命令总结
2013/06/03 PHP
codeigniter框架The URI you submitted has disallowed characters错误解决方法
2014/05/06 PHP
php输出金字塔的2种实现方法
2014/12/16 PHP
Java中final关键字详解
2015/08/10 PHP
基于jQueryUI和Corethink实现百度的搜索提示功能
2016/11/09 PHP
JavaScript中的new的使用方法与注意事项
2007/05/16 Javascript
jQuery实现类似淘宝购物车全选状态示例
2013/06/26 Javascript
几种延迟加载JS代码的方法加快网页的访问速度
2013/10/12 Javascript
js中的replace方法使用介绍
2013/10/28 Javascript
JavaScript实现动画打开半透明提示层的方法
2015/04/21 Javascript
JScript中的条件注释详解
2015/04/24 Javascript
JavaScript面对国际化编程时的一些建议
2015/06/24 Javascript
基于JavaScript实现生成名片、链接等二维码
2015/09/20 Javascript
jQuery实现的精美平滑二级下拉菜单效果代码
2016/03/28 Javascript
angularJS Provider、factory、service详解及实例代码
2016/09/21 Javascript
JS 调试中常见的报错问题解决方法
2017/05/20 Javascript
angularJs使用$watch和$filter过滤器制作搜索筛选实例
2017/06/01 Javascript
jQuery实现一个简单的验证码功能
2017/06/26 jQuery
jQuery常用选择器详解
2017/07/17 jQuery
Vue的Flux框架之Vuex状态管理器
2017/07/30 Javascript
vue监听对象及对象属性问题
2018/08/20 Javascript
判断JavaScript中的两个变量是否相等的操作符
2019/12/21 Javascript
[01:07:47]Secret vs Optic Supermajor 胜者组 BO3 第一场 6.4
2018/06/05 DOTA
[47:52]完美世界DOTA2联赛PWL S2 PXG vs InkIce 第二场 11.26
2020/11/30 DOTA
python MySQLdb Windows下安装教程及问题解决方法
2015/05/09 Python
Python的Flask框架中的Jinja2模板引擎学习教程
2016/06/30 Python
python 自动批量打开网页的示例
2019/02/21 Python
新西兰第一的行李箱网站:luggage.co.nz
2019/07/22 全球购物
Aurora London官网:奢华、负担得起的皮革手袋
2020/08/01 全球购物
消防安全责任书范本
2014/04/15 职场文书
公司会议策划方案
2014/05/17 职场文书
高中数学课堂教学反思
2016/02/18 职场文书
Java中PriorityQueue实现最小堆和最大堆的用法
2021/06/27 Java/Android