icnov_substr() 是 PHP 中的內置函數,允許您根據指定的字符編碼提取字符串的一部分。
用法:
iconv_substr( string $string, int $offset, ?int $length = null, ?string $encoding = null ): string|false
Parameters: 該函數采用四個參數,如下所述。
- $string: 要從中提取一部分的輸入字符串。
- $offset: 要提取的第一個字符的位置。位置從零開始,這意味著第一個字符位於位置 0,第二個字符位於位置 1,依此類推。
- $length: 您要提取的部分的長度。如果該值為負數,則該函數將提取從字符串起始位置到末尾的所有內容。
- $ecoding: 輸入字符串中使用的字符編碼。
返回值:返回值iconv_substr()是字符串的提取部分,如果字符串的長度小於偏移字符長,則為 false。當字符串長度與偏移字符長度相同時,將返回空字符串。
示例 1:下麵的程序演示了iconv_substr()函數。
PHP
<?php
$string = "Hello123";
$portion = iconv_substr($string, 2, 3, "UTF-8");
echo $portion;
?>
輸出:
llo
示例 2:下麵的程序演示了iconv_substr()函數。
PHP
<?php
$string = "1a2b3c4d5e";
$portion = iconv_substr($string, -3, 3, "UTF-8");
echo $portion;
?>
輸出:
d5e
參考: https://www.php.net/manual/en/function.iconv-substr.php
相關用法
- PHP iconv_substr()用法及代碼示例
- PHP iconv_strlen()用法及代碼示例
- PHP iconv_set_encoding()用法及代碼示例
- PHP iconv_strpos()用法及代碼示例
- PHP iconv_strrpos()用法及代碼示例
- PHP iconv_mime_encode()用法及代碼示例
- PHP iconv_mime_decode_headers()用法及代碼示例
- PHP iconv_mime_decode()用法及代碼示例
- PHP iconv_get_encoding()用法及代碼示例
- PHP iconv()用法及代碼示例
- PHP is_finite()用法及代碼示例
- PHP is_infinite()用法及代碼示例
- PHP is_nan()用法及代碼示例
- PHP is_file()用法及代碼示例
- PHP is_uploaded_file()用法及代碼示例
- PHP interface_exists()用法及代碼示例
- PHP is_subclass_of()用法及代碼示例
- PHP imap_8bit()用法及代碼示例
- PHP imap_alerts()用法及代碼示例
- PHP imap_append()用法及代碼示例
- PHP imap_base64()用法及代碼示例
- PHP imap_binary()用法及代碼示例
- PHP imap_body()用法及代碼示例
- PHP imap_bodystruct()用法及代碼示例
- PHP imap_check()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP iconv_substr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。