PHP – 如何使用 iconv_substr() 函数截取字符串的一部分?
在 PHP 中,**iconv_substr()** 函数用于根据偏移量和长度参数截取指定字符串的一部分。假设我们有一个字符串 **"helloWorld"**,我们想截取并只显示字符串 **(llowo)**,那么我们将使用从 2 到 5 的数字来选择它。
语法
string iconv_substr(str $string, int $offset, int $length, str $encoding)
参数
**iconv_substr()** 接受四个参数:**$string**、**$offset**、**$length** 和 **$encoding**。
**$string−** $string 参数指定原始字符串。
**$offset−** 如果 $offset 参数是非负数,则 **iconv_substr()** 函数从偏移字符开始截取字符串的选定部分,从零开始计数。如果它是负数,则 **iconv_substr()** 函数从距离字符串末尾偏移字符的位置开始截取部分。
**$length−** 如果给出 $length 参数并且它是正数,则其返回值将包含从偏移量开始的部分中最多 length 个字符。
**$encoding−** 如果 encoding 参数不存在或为空,则假设字符串采用 **iconv.internal_encoding** 编码。
返回值
**iconv_substr()** 函数返回由偏移量和长度参数指定的字符串部分。如果字符串短于偏移字符数,它将返回 False。如果字符串的长度与偏移字符数完全相同,则将返回空字符串。
示例 1
不带空格的 iconv_substr() 函数
在线演示
<?php // Helloworld sting is used // To cut the selected portion from string //iconv_substr function is used $string = iconv_substr("HelloWorld!", 2, 7, "UTF-8"); // It will returns the character from 2 to 7 var_dump($string); ?>
输出
string(7) "lloWorl"
示例 2
带空格的 iconv_substr() 函数
在线演示
<?php // Helloworld sting is used // To cut the selected portion from string //iconv_substr function is used $string = iconv_substr ("Hello World!", 2, 7, "UTF-8"); // It will returns the character from 2 to 7 var_dump($string); ?gt;
输出
string(7) "llo Wor"
广告