API16

JString/strlen

From Joomla! Documentation

< API16:JString
Revision as of 17:48, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== UTF-8 aware alternative to strlen Returns the number of characters in the string (NOT THE NUMBER OF BYTES), <span class="editsection" style="font-size:76%;"> <nowiki...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

Description[edit]

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

[Edit Descripton]

Template:Description:JString/strlen

Syntax[edit]

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

Returns[edit]

int number of UTF-8 characters in string

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

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

[Edit See Also] Template:SeeAlso:JString/strlen

Examples[edit]

<CodeExamplesForm />