chunk_split
(PHP 4, PHP 5)
chunk_split — 将字符串分割成小块
说明
string chunk_split
( string $body
[, int $chunklen
= 76
[, string $end
= "rn"
]] )
使用此函数将字符串分割成小块非常有用。例如将
base64_encode() 的输出转换成符合 RFC 2045 语义的字符串。它会在每
chunklen
个字符后边插入
end
。
参数
body
要分割的字符。
chunklen
分割的尺寸。
end
行尾序列符号。
返回值
返回分割后的字符。
范例
Example #1 chunk_split() 例子
<?php
// 使用 RFC 2045 语义格式化 $data
$new_string = chunk_split(base64_encode($data));
?>
参见
str_split() - 将字符串转换为数组 explode() - 使用一个字符串分割另一个字符串 split() - 用正则表达式将字符串分割到数组中 wordwrap() - 打断字符串为指定数量的字串 » RFC 2045