php chunk_split() 函数把字符串分割为一连串更小的部分
发布于 分类 PHP
更新于 2015-10-16
68天前 有1个用户阅读过
chunk_split() 函数把字符串分割为一连串更小的部分。
语法chunk_split(string,length,end)
示例
<?php
$str ="Hello world!";
echo chunk_split($str,6,"...");
?>
//输出:
Hello ...world!...
-- The End --