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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。