|
|
|
|
|
|
Function str_split | Language: PHP
|
Syntax
| str_split(String, SplitLength) |
Parameters
| STRING | String | The string to be converted.
| | INT | SplitLength | If this parameter is specified, the returned array will be broken down into chunks with each being SplitLength in length, otherwise each chunk will be one character in length. |
Return value
Description
| Converts a string to an array. |
|
|
|