dadamssg Posted May 27, 2009 Share Posted May 27, 2009 is there a function to make everything in a string lowercase? Link to comment https://forums.phpfreaks.com/topic/159915-solved-lower-case-a-string/ Share on other sites More sharing options...
redarrow Posted May 27, 2009 Share Posted May 27, 2009 strtolower($value); might as well learn them both mate. <?php $word="i am redarrow"; $upper=(strtoupper($word)); $lowe=strtolower($word); echo $upper; ?> Link to comment https://forums.phpfreaks.com/topic/159915-solved-lower-case-a-string/#findComment-843452 Share on other sites More sharing options...
dadamssg Posted May 27, 2009 Author Share Posted May 27, 2009 sweet thanks Link to comment https://forums.phpfreaks.com/topic/159915-solved-lower-case-a-string/#findComment-843461 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.