时间:2021-07-01 10:21:17 帮助过:44人阅读
chunk_split() 函数把字符串分割为一连串更小的部分。
注释:该函数不改变原始字符串。
chunk_split(string,length,end)
参数 | 描述 |
---|---|
string | 必需。规定要分割的字符串。 |
length | 可选。一个数字,定义字符串块的长度。默认为 76。 |
end | 可选。一个字符串,定义在每个字符串块之后放置的内容。默认为 \r\n。 |
返回值: | 返回已分割的字符串。 |
---|---|
PHP 版本: | 4+ |
在每个字符后分割一次字符串,并在每个分割后添加 ".":
源代码:
<!DOCTYPE html> <html> <body>
<?php $str = "Hello world!"; echo chunk_split($str,1,"."); ?> </body> </html>
运行结果:
H.e.l.l.o. .w.o.r.l.d.!.
在每六个字符后分割一次字符串,并在每个分割后添加 "...":
源代码:
<!DOCTYPE html> <html> <body> <?php $str = "Hello world!"; echo chunk_split($str,6,"..."); ?> </body> </html>
运行结果:
Hello ...world!...
相关推荐:
php把字符串分割为一连串更小的部分函数chunk_split()
关于字符串函数chunk_split()的10篇文章推荐
php中chunk_split()函数的用法介绍
以上就是PHP 的 chunk_split() 函数的详细内容,更多请关注Gxl网其它相关文章!