JString/str split
From Joomla! Documentation
< API16:JString
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
UTF-8 aware alternative to str_split Convert a string to an array
Syntax[edit]
static 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[edit]
array
Defined in[edit]
libraries/joomla/utilities/string.php
Importing[edit]
jimport( 'joomla.utilities.string' );
Source Body[edit]
public static function str_split($str, $split_len = 1)
{
jimport('phputf8.str_split');
return utf8_str_split($str, $split_len);
}
Examples[edit]
Code Examples[edit]