does php include any function like toupper and tolower
I want toupper fuction which convert ABC to abc or Abc to abc
simlary tolower shold convert ABC to abc or Abc to Abc
does php include any function like toupper and tolower
I want toupper fuction which convert ABC to abc or Abc to abc
simlary tolower shold convert ABC to abc or Abc to Abc
echo strtolower('TEXT'); //text
echo strtoupper('text'); //TEXT
echo ucwords('text text'); //Text Text
echo ucfirst('text text'); //Text text
echo lcfirst('TEXT TEXT'); //tEXT TEXT