详解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的header和asp中的redirect比较
Oct 09 PHP
最简单的PHP程序--记数器
Oct 09 PHP
PHP nl2br函数 将换行字符转成 &amp;lt;br&amp;gt;
Aug 21 PHP
Php 构造函数construct的前下划线是双的_
Dec 08 PHP
PHP中利用substr_replace将指定两位置之间的字符替换为*号
Jan 27 PHP
php array的学习笔记
May 16 PHP
Yii获取当前url和域名的方法
Jun 08 PHP
WordPress开发中短代码的实现及相关函数使用技巧
Jan 05 PHP
Zend Framework教程之Zend_Db_Table用法详解
Mar 21 PHP
PHPExcel实现表格导出功能示例【带有多个工作sheet】
Jun 13 PHP
php使用mysqli和pdo扩展,测试对比连接mysql数据库的效率完整示例
May 09 PHP
PHP cookie,session的使用与用户自动登录功能实现方法分析
Jun 05 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
javascript 当前日期加(天、周、月、年)
2009/08/09 Javascript
基于jquery的Repeater实现代码
2010/07/17 Javascript
JavaScript arguments 多参传值函数
2010/10/24 Javascript
jquery向.ashx文件post中文乱码问题的解决方法
2011/03/28 Javascript
js的alert弹出框出现乱码解决方案
2013/09/02 Javascript
JS使用oumousemove和oumouseout动态改变图片显示的方法
2015/03/31 Javascript
javascript实现验证IP地址等相关信息代码
2015/05/10 Javascript
javascript文本模板用法实例
2015/07/31 Javascript
js中实现字符串和数组的相互转化详解
2016/01/24 Javascript
ArtEditor富文本编辑器增加表单提交功能
2016/04/18 Javascript
js Canvas实现的日历时钟案例分享
2016/12/25 Javascript
详解angularjs中的隔离作用域理解以及绑定策略
2017/05/31 Javascript
vue 2.0封装model组件的方法
2017/08/03 Javascript
ElementUI中el-tree节点的操作的实现
2020/02/27 Javascript
javascript设计模式 ? 外观模式原理与用法实例分析
2020/04/15 Javascript
JavaScript闭包原理与用法学习笔记
2020/05/29 Javascript
Python中让MySQL查询结果返回字典类型的方法
2014/08/22 Python
Python编程实现二叉树及七种遍历方法详解
2017/06/02 Python
Python实现基于多线程、多用户的FTP服务器与客户端功能完整实例
2017/08/18 Python
python3.x实现发送邮件功能
2018/05/22 Python
对django中render()与render_to_response()的区别详解
2018/10/16 Python
Python从入门到精通之环境搭建教程图解
2019/09/26 Python
python使用rsa非对称加密过程解析
2019/12/28 Python
详解matplotlib绘图样式(style)初探
2021/02/03 Python
Web前端页面跳转并取到值
2017/04/24 HTML / CSS
台湾线上百货零售购物平台:friDay购物
2017/08/18 全球购物
一些Unix笔试题和面试题
2013/01/22 面试题
设计4个线程,其中两个线程每次对j增加1,另外两个线程对j每次减少1。写出程序。
2014/12/30 面试题
药物学专业学生的自我评价
2013/10/27 职场文书
给排水工程师岗位职责
2013/11/21 职场文书
经典洗发水广告词
2014/03/13 职场文书
学校教研活动总结
2014/07/02 职场文书
初中生毕业评语
2014/12/29 职场文书
2016年大学光棍节活动总结
2016/04/05 职场文书
Python实现老照片修复之上色小技巧
2021/10/16 Python
css清除浮动clearfix:after的用法详解(附完整代码)
2023/05/21 HTML / CSS