Maison > Article > développement back-end > Fonction chunk_split() de PHP
Cet article vous présente la fonction chunk_split() de PHP. Maintenant, je le partage avec vous. Les amis dans le besoin peuvent se référer à la définition et à l'utilisation de
Remarque : Cette fonction ne modifie pas la chaîne d'origine.
chunk_split(string,length,end)
参数 | 描述 |
---|---|
string | 必需。规定要分割的字符串。 |
length | 可选。一个数字,定义字符串块的长度。默认为 76。 |
end | 可选。一个字符串,定义在每个字符串块之后放置的内容。默认为 rn。 |
返回值: | 返回已分割的字符串。 |
---|---|
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>