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 13 PHP
php split汉字
Jun 05 PHP
php中global和$GLOBALS[]的分析之一
Feb 02 PHP
PHP 字符串长度判断效率更高的方法
Mar 02 PHP
微信营销平台系统?刮刮乐的开发
Jun 10 PHP
thinkphp学习笔记之多表查询
Jul 28 PHP
腾讯CMEM的PHP扩展编译安装方法
Sep 25 PHP
php常量详细解析
Oct 27 PHP
PHP+redis实现添加处理投票的方法
Nov 14 PHP
Symfony控制层深入详解
Mar 17 PHP
php使用curl代理实现抓取数据的方法
Feb 03 PHP
Laravel 实现Controller向blade前台模板赋值的四种方式小结
Oct 22 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 手机归属地查询 api
2010/02/08 PHP
flash用php连接数据库的代码
2011/04/21 PHP
深入eAccelerator与memcached的区别详解
2013/06/06 PHP
php生成随机字符串可指定纯数字、纯字母或者混合的
2014/04/18 PHP
php+mysqli事务控制实现银行转账实例
2015/01/29 PHP
php从数组中随机选择若干不重复元素的方法
2015/03/14 PHP
PHP常用算法和数据结构示例(必看篇)
2017/03/15 PHP
PHP APP微信提现接口代码
2018/09/30 PHP
转一个日期输入控件,支持FF
2007/04/27 Javascript
JavaScript 动态加载脚本和样式的方法
2015/04/13 Javascript
js面向对象之常见创建对象的几种方式(工厂模式、构造函数模式、原型模式)
2015/11/09 Javascript
浅析Bootstrip的select控件绑定数据的问题
2016/05/10 Javascript
jQuery实现的选择商品飞入文本框动画效果完整实例
2016/08/10 Javascript
js微信扫描二维码登录网站技术原理
2016/12/01 Javascript
js常用DOM方法详解
2017/02/04 Javascript
Angularjs单选改为多选的开发过程及问题解析
2017/02/17 Javascript
本地存储localStorage用法详解
2017/07/31 Javascript
IE11下处理Promise及Vue的单项数据流问题
2019/07/24 Javascript
JS实现点击发送验证码 xx秒后重新发送功能
2019/07/30 Javascript
js的新生代垃圾回收知识点总结
2019/08/22 Javascript
微信小程序日历插件代码实例
2019/12/04 Javascript
Vue Router的手写实现方法实现
2020/03/02 Javascript
实例讲解Python编程中@property装饰器的用法
2016/06/20 Python
django获取from表单multiple-select的value和id的方法
2019/07/19 Python
Python jieba结巴分词原理及用法解析
2020/11/05 Python
解决TensorFlow训练模型及保存数量限制的问题
2021/03/03 Python
利用CSS3的特性改变文本选中时的颜色
2013/09/11 HTML / CSS
TIME时代杂志台湾总代理:台时亚洲
2018/10/22 全球购物
软件缺陷的分类都有哪些
2014/08/22 面试题
土木工程应届生自荐信
2013/09/24 职场文书
党的群众路线教育实践活动自我剖析材料
2014/10/08 职场文书
幼儿园大班教师个人工作总结
2015/02/05 职场文书
高二英语教学反思
2016/03/03 职场文书
详解Go与PHP的语法对比
2021/05/29 PHP
写一个Python脚本下载哔哩哔哩舞蹈区的所有视频
2021/05/31 Python
app场景下uniapp的扫码记录
2022/07/23 Java/Android