API15

JString/strtolower: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 43: Line 43:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=strtolower
  category=strtolower
  category=JString
  category=JString
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:09, 25 March 2017

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

[<! removed edit link to red link >]

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

Syntax

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

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

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

Examples

Code Examples