Strlower

From kwiki

Jump to: navigation, search
This article is written by Konrad, thus using rather nonstandard English:)

strlower (DNM Script function)

Contents

full declaration

String strlower (string str)

return value

String

description

Convert string to lowercase (returns the result)

example

var $s="Hello World";
$s=strupper($s);
MessageBox($s);//"HELLO WORLD"
$s=strlower($s);
MessageBox($s);//"hello world"


keywords: strlower string lower low lowercase to make
Personal tools
konradp.com