分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 前端开发

PHP之mb_substr_count

发布时间:2023-09-06 01:40责任编辑:胡小海关键词:PHP

mb_substr_count

  • (PHP 4 >= 4.3.0, PHP 5, PHP 7)
  • mb_substr_count — Count the number of substring occurrences
  • mb_substr_count — 统计字符串出现的次数

Description

int mb_substr_count ( ????string $haystack , ????string $needle [, ????string $encoding = mb_internal_encoding() ] ????)//Counts the number of times the needle substring occurs in the haystack string.//统计子字符串 needle 出现在字符串 haystack 中的次数。

Parameters

haystack

  • The string being checked.
  • 要检查的字符串。

needle

  • The string being found.
  • 待查找的字符串。

encoding

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

Return Values

  • The number of times the needle substring occurs in the haystack string.
  • 子字符串 needle 出现在字符串 haystack 中的次数。

Examples

<?php/** * Created by PhpStorm. * User: zhangrongxiang * Date: 2018/1/31 * Time: 下午10:07 */echo mb_substr_count( "This is a test", "is" ) . PHP_EOL; // 输出 2echo mb_substr_count( "This is a test", " " ) . PHP_EOL; // 输出 3echo mb_substr_count( "hello 中国! 中国 ! 中国! hello", "中国" ) . PHP_EOL; //3echo mb_substr_count( "hello 中国! 中国 ! 中国! hello", "中国", "gbk" ) . PHP_EOL; //3echo mb_substr_count( "hello 中国! 中国 ! 中国! hello", "中国", "utf-8" ) . PHP_EOL; //3echo mb_substr_count( "hello 中国! 中国 ! 中国! hello", "中国", "ascii" ) . PHP_EOL; //3echo "strlen : " . mb_strlen( "hello 中国! 中国 ! 中国! hello" ) . PHP_EOL; //24echo "mb_strlen : " . strlen( "hello 中国! 中国 ! 中国! hello" ) . PHP_EOL; //40 = 8*3 + 16echo substr_count( "hello 中国! 中国 ! 中国! hello", "中国" ) . PHP_EOL; //3echo substr_count( "hello 中国! 中国 ! 中国! hello", "中国", 2, 10 ) . PHP_EOL; //1

文章参考

  • http://php.net/manual/en/function.mb-substr-count.php

    转载注明出处

PHP之mb_substr_count

原文地址:https://www.cnblogs.com/zhangrxiang/p/8395139.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved