API16

API16:JString/strlen

From Joomla! Documentation

Revision as of 02:08, 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),



Syntax

static 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

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



Examples

Code Examples