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,"...");
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!