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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。