Heim > Artikel > Backend-Entwicklung > Die Funktion chunk_split() von PHP
Dieser Artikel stellt Ihnen die Funktion chunk_split() von PHP vor. Jetzt können Freunde in Not auf die Definition und Verwendung von
Hinweis: Diese Funktion ändert nicht die ursprüngliche Zeichenfolge.
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>