API15:JString/str split

From Joomla! Documentation

Jump to: navigation, search

Contents

Description

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

[Edit Descripton]

Description:JString/str split

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

[Edit See Also] SeeAlso:JString/str split

Examples


Personal tools