PHP chunk_split() 函数


实例

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

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = "Shanghai";
  6. echo chunk_split($str,1,".");
  7. ?>
  8. </body>
  9. </html>

定义和用法

chunk_split() 函数把字符串分割为一连串更小的部分。

注释:该函数不改变原始字符串。


语法

  1. chunk_split(string,length,end)
参数描述
string必需。规定要分割的字符串。
length可选。数字值,定义字符串块的长度。默认是 76。
end可选。字符串值,定义在每个字符串块末端放置的内容。默认是 \r\n。

技术细节

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

更多实例

例子 1

在每六个字符后分割一次字符串,并在每个分割后添加 "…":

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = "Hello world!";
  6. echo chunk_split($str,6,"...");
  7. ?>
  8. </body>
  9. </html>

分类导航