API15

API15:JString/strlen

From Joomla! Documentation

Revision as of 01:09, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

UTF-8 aware alternative to strlen Returns the number of characters in the string (NOT THE NUMBER OF BYTES),

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

strlen($str)
Parameter Name Default Value Description
$str UTF-8 string

Returns

int number of UTF-8 characters in string

Defined in

libraries/joomla/utilities/string.php

Importing

jimport( 'joomla.utilities.string' );

Source Body

function strlen($str){
        return utf8_strlen($str);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples