API16

API16:JString/str split

From Joomla! Documentation

Revision as of 14:27, 24 March 2017 by JoomlaWikiBot (talk | contribs) (clean up)

Description

UTF-8 aware alternative to str_split Convert a string to an array


{{subst:Description:JString/str_split}}

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);
}


{{subst:SeeAlso:JString/str_split}}

Examples

<CodeExamplesForm />