chunk_split()function是PHP中的内置函数。 chunk_split()函数用于将字符串拆分为特定长度的较小块。
语法如下:
string chunk_split($string, $length, $end)
参数:此函数接受上述语法中所示的三个参数, 并在下面进行描述:
- $字符串:此参数指定需要分块的字符串。
- $ length:此参数指定一个整数, 该整数指定块的长度。那就是分块部分的长度。
- $ end:此参数指定行结束顺序。
例子:
Input : string = "lsbin"
length = 4
end = "."
Output: Geek.sfor.Geek.s. Input: string = "Twinkle bajaj"
length = 2
end = "*"
Output: Tw*in*kl*e *ba*ja*j*
下面的程序说明了PHP中的chunk_split()函数:
程序1:
<
?php
// PHP program to illustrate the
// chunk_split function $str = "Twinkle bajaj" ;
echo chunk_split ( $str , 2, "*" );
?>
输出如下:
Tw*in*kl*e *ba*ja*j*
程式2:
<
?php
// PHP program to illustrate the
// chunk_split function $str = "lsbin" ;
// Returns a string with a '.'
// placed after every four characters.
echo chunk_split ( $str , 4, "." );
?>
输出如下:
geek.sfor.geek.s.
计划4:
<
?php
// PHP program to illustrate the
// chunk_split function $str = "abcd" ;
echo chunk_split ( $str , 4, "@@" );
?>
输出如下:
abcd@@
计划5:
<
?php
// PHP program to illustrate the
// chunk_split function // If specified length is more than
// string length, then added at the
// end.
$str = "abcd" ;
echo chunk_split ( $str , 10, "@@" );
?>
输出如下:
abcd@@
参考:
【PHP如何使用chunk_split()函数(详细示例)】http://php.net/manual/en/function.chunk-split.php
推荐阅读
- C++如何理解和使用虚函数和运行时多态((用法示例+图解)|S1)
- BCD至七段解码器详细解读
- Java如何使用Guava Ints.min()函数(用法示例详解)
- 本图文详细教程教你设置高清电脑壁纸
- 本图文详细教程教你电脑分区
- win10电脑系统无损分区安装图文详细教程
- win10电脑重装win7系统安装图文详细教程
- 本图文详细教程教你win10一键重装
- 装机版win10 64位系统一键重装图文详细教程图解