博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP之mb_strpos使用
阅读量:5825 次
发布时间:2019-06-18

本文共 2344 字,大约阅读时间需要 7 分钟。

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

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;//110033445566echo mb_str_replace( '????', '?', '?1', 2, mb_internal_encoding() ) . PHP_EOL;echo mb_str_replace( '1111', '111', '0', 1 ) . PHP_EOL;//10echo mb_strlen( '????' ) . PHP_EOL;//4//代码开发代码echo mb_str_replace( '软件开发软件', '软件', '代码' ,0,mb_internal_encoding()) . PHP_EOL;//代码开发 //todo??echo mb_str_replace( '软件开发软件', '软件', '代码' ) . PHP_EOL;

文章参考

转载注明出处

你可能感兴趣的文章
.NET各种小问题
查看>>
ApkTool反编译和重新打包
查看>>
OpenState: Programming Platform-independent Stateful OpenFlow Applications Inside the Switch
查看>>
java中的Volatile关键字
查看>>
前端自定义图标
查看>>
sqlserver 取取月初月末和月份间隔
查看>>
Vagrant的一个BUG - 不支持'change_host_name'
查看>>
实验二
查看>>
独立开发一个云(PaaS)的核心要素, Go, Go, Go!!!
查看>>
java的继承性
查看>>
tomcat 实例
查看>>
MyBatis使用DEMO及cache的使用心得
查看>>
网站文章如何能自动判定是抄袭?一种算法和实践架构剖析
查看>>
【OpenCV学习】滚动条
查看>>
ofo用科技引领行业进入4.0时代 用户粘性连续8个月远甩摩拜
查看>>
无法拒绝|华为618最高优惠1000元 更有梅西签名球衣奉送
查看>>
乐信Q2季报图解:调整后净利过5亿 同比增长776%
查看>>
兰州青年志愿者“中西合璧”玩快闪 温暖旅客回家路
查看>>
计划10年建10万廉价屋 新西兰政府:比想象中难
查看>>
甘肃发首版《3D打印职业教育教材》:校企合作育专才
查看>>