RAD function: tolower

A RAD function that converts all uppercase characters in a string variable to lowercase characters. Characters with no lowercase equivalent remain the same.

Function

tolower

Format

tolower($string)

Parameters

The following parameter is valid for the tolower function:

Parameter Data type Description
$string String The string variable containing uppercase characters.

Factors

Character conversions are based on the value of the language parameter.

Example

$s=tolower("Copyright 2011")

After execution, the value of $s is copyright 2011.