{site_name}

{site_name}

🌜 搜索

chunk_split() 函数是 PHP 中的一个字符串处理函数,可以将一个字

php 𝄐 0
php chunk_split
chunk_split() 函数是 PHP 中的一个字符串处理函数,可以将一个字符串分成指定长度的子字符串,并在每个子字符串之间插入指定的分隔符。

chunk_split() 函数的语法为:

php
string chunk_split(string $str, int $chunklen = 76, string $end = "\r\n")


该函数接受三个参数:

- $str:要处理的原始字符串。
- $chunklen:每个子字符串的长度。默认值为 76。
- $end:每个子字符串之间插入的分隔符。默认为 \r\n。

下面是一个例子,展示了如何使用 chunk_split() 函数将一个长字符串按照固定长度分成多个子字符串:

php
$longString = "This is a long string that we want to split into smaller chunks.";
$chunkedString = chunk_split($longString, 10, "|");
echo $chunkedString;


输出:


This is a |long strin|g that we |want to sp|lit into s|maller chu|nks.|


在上面的例子中,我们将 $longString 分成了每个长度为 10 的子字符串,并在每个子字符串之间插入了 | 分隔符。