API16

API16:JString/strtolower

From Joomla! Documentation

Description

UTF-8 aware alternative to strtlower Make a string lowercase Note: The concept of a characters "case" only exists is some alphabets such as Latin, Greek, Cyrillic, Armenian and archaic Georgian - it does not exist in the Chinese alphabet, for example. See Unicode Standard Annex #21: Case Mappings



Syntax

static strtolower($str)
Parameter Name Default Value Description
$str

Returns

mixed either string in lowercase or FALSE is UTF-8 invalid

Defined in

libraries/joomla/utilities/string.php

Importing

jimport( 'joomla.utilities.string' );

Source Body

public static function strtolower($str){
        return utf8_strtolower($str);
}



Examples

Code Examples