目录

PHP chunk_split() 函数

❮ PHP 字符串参考

示例

在每个字符后拆分字符串,并在每个拆分后添加 ".":

<?php
$str = "Hello world!";
echo chunk_split($str,1,".");
?>
亲自试一试 »

定义和用法

chunk_split() 函数将字符串分割成一系列较小的部分。

笔记:该函数不会改变原始字符串。


语法

chunk_split( string,length,end)

参数值

Parameter Description
string Required. Specifies the string to split
length Optional. A number that defines the length of the chunks. Default is 76
end Optional. A string that defines what to place at the end of each chunk. Default is \r\n

技术细节

返回值: 返回分割后的字符串
PHP 版本: 4+

更多示例

示例

在每六个字符之后分割字符串,并在每个分割后添加 "...":

<?php
$str = "Hello world!";
echo chunk_split($str,6,"...");
?>
亲自试一试 »

❮ PHP 字符串参考