Make Every Letter In A PHP String Lowercase



Make Every Letter In A PHP String Lowercase
Make Every Letter In A PHP String Lowercase
Post Description:
Post Tags: make, every, letter, in, a, php, string, lowercase
This Post Has Been Viewed 619 Times Since Wed Jun 20, 2007 8:35 am Posted By tanmas with 1 replies
Next Post »» Replace parts of a PHP string replacing words characters
Make Every Letter In A PHP String Lowercase
can you show me how i can make all the letters in a sentence or words into small lettter, by small letters i maan into lower case instead of capitalized or uppercasing.

Leave Your Comments     [ dejar commentarios ]
  * Name     [nombre]

  * eMail (will not be published)     [coreo electronico]

* Enter Your Reply or Comments:    [commentarios]


Add Picture To Comments         [incluir foto]
YES NO             upload
Receive Replies on my Comments (An email will be sent to you when someone replies to your comments)

     

Comments and replies About Make Every Letter In A PHP String Lowercase




:: 1 :: #7381 - Reply By hostman On Wed Jun 20, 2007 8:37 am
you can use php strtolower() funtion

if you have something like this:

$string = "Wallpaperama ROCKS";

you can use

echo strtolower($string);

and it will display this:
wallpaperama rocks

which all the letters in the string will be covert it to lower case letters