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.
Contents
Description
UTF-8 aware alternative to str_split Convert a string to an array
Syntax
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
array
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
public static function str_split($str, $split_len = 1)
{
jimport('phputf8.str_split');
return utf8_str_split($str, $split_len);
}