字符串函数
PHP Manual

chunk_split

(PHP 4, PHP 5)

chunk_split将字符串分割成小块

说明

string chunk_split ( string $body [, int $chunklen [, string $end ]] )

使用此函数将字符串分割成小块非常有用。例如将 base64_encode() 的输出转换成符合 RFC 2045 语义的字符串。它会在每 chunklen(默认为 76)个字符后边插入 end(默认为“\r\n”)。此函数会返回新的字符串,而不会修改原有字符串。

Example #1 chunk_split() 例子

<?php
// 使用 RFC 2045 语义格式化 $data
$new_string chunk_split(base64_encode($data));
?>

参见 str_split()explode()split()wordwrap()» RFC 2045

参数

body

The string to be chunked.

chunklen

The chunk length.

end

The line ending sequence.

返回值

Returns the chunked string.

范例

Example #2 chunk_split() example

<?php
// format $data using RFC 2045 semantics
$new_string chunk_split(base64_encode($data));
?>

参见


字符串函数
PHP Manual