php中的chunk_split()和str_split()字串函式

nt1979發表於2021-09-09

chunk_split(string $string,[,int $length[,string $end="rn"]]),將字串按一定長度分割,結果返回分割後的字串。str_split(string $string[,int $length=1])將字串按一定長度進行分割,結果返回一個陣列,分割後的每個串就是陣列的單元。

$str="hello world";

echo chunk_split($str,3,"end");//結果返回helendlo endworendldend

print_r str_split($str,3);//結果返回Array([0]=>hel [1]=>lo  [2]=>wor [3]=>ld)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4822/viewspace-2802347/,如需轉載,請註明出處,否則將追究法律責任。

相關文章