php学习笔记之mb_strstr的基本使用


Posted in PHP onFebruary 03, 2018

前言

本文主要介绍了关于php之mb_strstr基本使用的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

mb_strstr

  • (PHP 5 >= 5.2.0, PHP 7)
  • mb_strstr — Finds first occurrence of a string within another
  • 查找字符串在另一个字符串里的首次出现

Description

string mb_strstr ( 
 string $haystack , 
 string $needle [, 
 bool $before_needle = false [, 
 string $encoding =mb_internal_encoding() ]] 
 )

//mb_strstr() finds the first occurrence of needle in haystack and returns the portion of haystack. If needle is not found, it returns FALSE.
//mb_strstr() 查找了 needle 在 haystack 中首次的出现并返回 haystack 的一部分。 如果 needle 没有找到,它将返回 FALSE。

Parameters

haystack

  • The string from which to get the first occurrence of needle
  • 要获取 needle 首次出现的字符串。

needle

  • The string to find in haystack
  • 在 haystack 中查找这个字符串。

before_needle

  • Determines which portion of haystack this function returns. If set to TRUE, it returns all of haystack from the beginning to the first occurrence of needle (excluding needle). If set to FALSE, it returns all of haystack from the first occurrence of needle to the end (including needle).
  • 决定这个函数返回 haystack 的哪一部分。 如果设置为 TRUE,它返回 haystack 中从开始到 needle 出现位置的所有字符(不包括 needle)。 如果设置为 FALSE,它返回 haystack 中 needle 出现位置到最后的所有字符(包括了 needle)。

encoding

  • Character encoding name to use. If it is omitted, internal character encoding is used.
  • 要使用的字符编码名称。 如果省略该参数,将使用内部字符编码。

Return Values

  • Returns the portion of haystack, or FALSE if needle is not found.
  • 返回 haystack 的一部分,或者 needle 没找到则返回 FALSE。

Examples

<?php
/**
 * Created by PhpStorm.
 * User: zhangrongxiang
 * Date: 2018/2/1
 * Time: 下午10:27
 */

//* * If set to true, it returns all of haystack from the beginning to the first occurrence of needle.
$strstr = mb_strstr( "hello china", "ll", true );
echo $strstr . PHP_EOL; //he

//* If set to false, it returns all of haystack from the first occurrence of needle to the end,
$strstr = mb_strstr( "hello china", "ll", false );
echo $strstr . PHP_EOL;//llo china

//hello china
echo mb_strstr( "hello china", "ll", true ) . mb_strstr( "hello china", "ll", false ) . PHP_EOL;

$strstr = mb_strstr( "hello China,hello PHP", "ll", true );
echo $strstr . PHP_EOL; //he

$strstr = mb_strstr( "hello China,hello PHP", "ll", false );
echo $strstr . PHP_EOL; //llo China,hello PHP

$strstr = mb_strstr( "PHP是世界上最好的语言?", "最好", true );
echo $strstr.PHP_EOL; //PHP是世界上
$strstr = mb_strstr( "PHP是世界上最好的语言?", "最好", false );
echo $strstr.PHP_EOL; //最好的语言?

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对三水点靠木的支持。

PHP 相关文章推荐
PHP 的几个配置文件函数
Dec 21 PHP
PHP教程 基本语法
Oct 23 PHP
Sorting Array Values in PHP(数组排序)
Sep 15 PHP
php数组函数序列之array_values() 获取数组元素值的函数与方法
Oct 30 PHP
php 网上商城促销设计实例代码
Feb 17 PHP
在PHP模板引擎smarty生成随机数的方法和math函数详解
Apr 24 PHP
PHP实现获取域名的方法小结
Nov 05 PHP
PHP文件读取功能的应用实例
May 08 PHP
php判断访问IP的方法
Jun 19 PHP
PHP常用设计模式之委托设计模式
Feb 13 PHP
php基于dom实现的图书xml格式数据示例
Feb 03 PHP
详解阿里云视频直播PHP-SDK接入教程
Jul 09 PHP
php通过pecl方式安装扩展的实例讲解
Feb 02 #PHP
PHP实现对图片的反色处理功能【测试可用】
Feb 01 #PHP
php 删除一维数组中某一个值元素的操作方法
Feb 01 #PHP
基于php双引号中访问数组元素报错的解决方法
Feb 01 #PHP
PHP运用foreach神奇的转换数组(实例讲解)
Feb 01 #PHP
PHP双向链表定义与用法示例
Jan 31 #PHP
基于PHP实现的多元线性回归模拟曲线算法
Jan 30 #PHP
You might like
php &amp;&amp; 逻辑与运算符使用说明
2010/03/04 PHP
PHP文件缓存内容保存格式实例分析
2014/08/20 PHP
jQuery使用手册之三 CSS操作
2007/03/24 Javascript
Javascript 获取链接(url)参数的方法
2009/02/15 Javascript
js性能优化 如何更快速加载你的JavaScript页面
2012/03/17 Javascript
深入理解JavaScript系列(33):设计模式之策略模式详解
2015/03/03 Javascript
javascript实现仿腾讯游戏选择
2015/05/14 Javascript
node.js版本管理工具n无效的原理和解决方法
2016/11/24 Javascript
js闭包用法实例详解
2016/12/13 Javascript
原生JS改变透明度实现轮播效果
2017/03/24 Javascript
简单实现jQuery轮播效果
2017/08/18 jQuery
基于vue开发的在线付费课程应用过程
2018/01/25 Javascript
详解如何在项目中使用jest测试react native组件
2018/02/09 Javascript
对vue v-if v-else-if v-else 的简单使用详解
2018/09/29 Javascript
详解vue-cli+es6引入es5写的js(两种方法)
2019/04/19 Javascript
ElementUI Tag组件实现多标签生成的方法示例
2019/07/08 Javascript
解决vue.js提交数组时出现数组下标的问题
2019/11/05 Javascript
python实现迭代法求方程组的根过程解析
2019/11/25 Javascript
用JS实现一个简单的打砖块游戏
2019/12/11 Javascript
vue实现评价星星功能
2020/06/30 Javascript
Python判断变量是否为Json格式的字符串示例
2017/05/03 Python
Django rest framework基本介绍与代码示例
2018/01/26 Python
Python hashlib模块用法实例分析
2018/06/12 Python
对Pycharm创建py文件时自定义头部模板的方法详解
2019/02/12 Python
Django 中自定义 Admin 样式与功能的实现方法
2019/07/04 Python
Tensorflow Summary用法学习笔记
2020/01/10 Python
巴西图书和电子产品购物网站:Saraiva
2017/06/07 全球购物
白俄罗斯大卖场:21vek.by
2019/07/25 全球购物
Invicta手表官方商店:百年制表历史的瑞士腕表品牌
2019/09/26 全球购物
法国包包和行李箱销售网站:Bagage24.fr
2020/03/24 全球购物
本科生求职信
2014/06/17 职场文书
我的中国梦演讲稿500字
2014/08/19 职场文书
机修车间主任岗位职责
2015/04/08 职场文书
孔繁森观后感
2015/06/10 职场文书
小学生作文写作技巧100例,非常实用!
2019/07/08 职场文书
mysql查询结果实现多列拼接查询
2022/04/03 MySQL