php常用字符串长度函数strlen()与mb_strlen()用法实例分析

这篇文章主要介绍了php常用字符串长度函数strlen()与mb_strlen()用法,结合实例形式分析了php字符串长度函数strlen()与mb_strlen()功能、用法及相关操作注意事项,需要的朋友可以参考下。

本文实例讲述了php常用字符串长度函数strlen()与mb_strlen()用法,分享给大家供大家参考,具体如下:

int strlen ( string $string )

int strlen ( string $string ) 获取给定字符串的[字节]长度 成功则返回字符串$string的长度,如果$string为空,则返回 0。

  1. <?php
  2. $str1 = "abcdef"; //输出6
  3. $str2 = " ab cd "; //输出7,注意,开头、结尾、中间的空格
  4. $str3 = "中国你好"; //输出12,但会变化,与系统所采用的字符编码方式有关
  5. $str4 = "中国,你好"; //输出15,但会变化,与系统所采用的字符编码方式有关
  6. echo '$str1的字节长度为:'.strlen($str1).'$str2的字节长度为:'.strlen($str2).'';
  7. echo "<br/>";
  8. echo '$str3的字节长度为:'.strlen($str3).'$str4的字节长度为:'.strlen($str4).'';
  9. ?>

运行结果:

$str1的字节长度为:6$str2的字节长度为:7

$str3的字节长度为:8$str4的字节长度为:10

mb_strlen() — 获取字符串的长度

mixed mb_strlen ( string $str [, string $encoding = mb_internal_encoding() ] )

$str 要检查长度的字符串

$encoding,可指定字符编码,如省略则使用内部字符编码

返回值:返回具有encoding编码的字符串str包含的[字符数],多字节的字符被计为 1

  1. <?php
  2. $str1 = "abcdef"; //输出6
  3. $str2 = " ab cd "; //输出7 注意,开头、结尾、中间的空格
  4. $str3 = "中国你好"; //输出4
  5. $str4 = "中国,你好"; //输出5
  6. echo '$str1的字符长度为:'.mb_strlen($str1,"utf-8").'$str2的字符长度为:'.mb_strlen($str2,"utf-8").'';
  7. echo "<br/>";
  8. echo '$str3的字符长度为:'.mb_strlen($str3,"utf-8").'$str4的字符长度为:'.mb_strlen($str4,"utf-8").'';
  9. ?>

运行结果:

$str1的字符长度为:6$str2的字符长度为:7

$str3的字符长度为:3$str4的字符长度为:5