API15:JString/str split
From Joomla! Documentation
Description
UTF-8 aware alternative to str_split Convert a string to an array
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
str_split($str, $split_len=1)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | UTF-8 encoded | |
| $split_len | 1 | number to characters to split string by |
Returns
array
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
function str_split($str, $split_len = 1)
{
jimport('phputf8.str_split');
return utf8_str_split($str, $split_len);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples