|
PHP5中文手册
str_split(PHP 5) str_split — Convert a string to an array 说明
array str_split
( string $string
[, int $split_length
] )
Converts a string to an array. 参数
返回值If the optional split_length parameter is specified, the returned array will be broken down into chunks with each being split_length in length, otherwise each chunk will be one character in length. FALSE is returned if split_length is less than 1. If the split_length length exceeds the length of string , the entire string is returned as the first (and only) array element. 范例
Example#1 Example uses of str_split()
<?php 上例将输出:
|