mb_substr() 是 PHP 中的内置函数,用于根据指定的起始位置和长度提取字符串的一部分,同时考虑字符串的多字节字符编码。
用法:
mb_substr( string $string, int $start, ?int $length = null, ?string $encoding = null ) : string
Parameters: 该函数采用四个参数,如下所述。
- $string: 要从中提取子字符串的多字节字符串。
- $start:字符串中开始提取的位置。如果为负,则位置相对于字符串末尾。
- $length:要提取的子字符串的长度。如果未提供,则该函数返回从$开始位置直到字符串末尾。
- $encoding: 字符串的字符编码。如果未提供,则使用内部编码。
返回值:此函数返回由 start 和 length 参数指定的字符串的特定部分。
示例 1:下面的程序演示了mb_substr()函数。
PHP
<?php
$str = "Hello, world!";
$sub = mb_substr($str, -6);
echo $sub;
?>
输出:
world!
示例 2:下面的程序演示了mb_substr()函数。
PHP
<?php
$str = "Geeks for Geeks";
$sub = mb_substr($str, 3,-6);
echo $sub;
?>
输出:
ks for
参考: https://www.php.net/manual/en/function.mb-substr.php
相关用法
- PHP mb_substr()用法及代码示例
- PHP mb_substr_count()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP mb_strtolower()用法及代码示例
- PHP mb_strtoupper()用法及代码示例
- PHP mb_str_split()用法及代码示例
- PHP mb_strrchr()用法及代码示例
- PHP mb_strimwidth()用法及代码示例
- PHP mb_stristr()用法及代码示例
- PHP mb_split()用法及代码示例
- PHP mb_strripos()用法及代码示例
- PHP mb_strstr()用法及代码示例
- PHP mb_scrub()用法及代码示例
- PHP mb_strpos()用法及代码示例
- PHP mb_stripos()用法及代码示例
- PHP mb_strrichr()用法及代码示例
- PHP mb_strcut()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP mb_check_encoding()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_detect_order()用法及代码示例
- PHP mb_ereg()用法及代码示例
- PHP mb_http_input()用法及代码示例
- PHP mb_convert_encoding()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_substr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。