API16:JString/strlen
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
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); }
[Edit See Also] SeeAlso:JString/strlen
Examples
<CodeExamplesForm />
