在 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 参数并且它是正数,那么它的返回值最多包含从 offset 开始的部分的 length 个字符。
$encoding−如果编码参数不存在或为空,则假定字符串在iconv.internal_encoding。
返回值
这个iconv_substr()函数返回由偏移量和长度参数指定的字符串部分。如果字符串比偏移字符短,则返回 False。如果字符串与偏移字符的长度完全相同,则将返回 null 或空字符串。
例子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"
相关用法
- PHP iconv_strlen()用法及代码示例
- PHP iconv_set_encoding()用法及代码示例
- PHP iconv_mime_decode()用法及代码示例
- PHP iconv_mime_decode_headers()用法及代码示例
- PHP iconv_mime_encode()用法及代码示例
- PHP iconv_get_encoding()用法及代码示例
- PHP iconv()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP imagegif()用法及代码示例
- PHP imageresolution()用法及代码示例
- PHP imagebmp()用法及代码示例
- PHP is_link( )用法及代码示例
- PHP imap_getsubscribed()用法及代码示例
- PHP is_link()用法及代码示例
- PHP imagearc()用法及代码示例
- PHP imageftbbox()用法及代码示例
- PHP idate()用法及代码示例
- PHP imagecreatefromgif()用法及代码示例
- PHP imagecreatefrombmp()用法及代码示例
- PHP imap_header()用法及代码示例
注:本文由纯净天空筛选整理自Urmila Samariya大神的英文原创作品 PHP – How to cut out part of a string using iconv_substr()?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。