dlf1987 Posted May 17, 2007 Share Posted May 17, 2007 Hi is there a way to make php ignore case? my thumbnails names are lowercase, and my main images name are uppercase Thanks! Link to comment https://forums.phpfreaks.com/topic/51890-php-ignore-case-sensitive/ Share on other sites More sharing options...
chigley Posted May 17, 2007 Share Posted May 17, 2007 <?php $string = "FOObar"; $string = strtolower($string); echo $string; // foobar ?> Link to comment https://forums.phpfreaks.com/topic/51890-php-ignore-case-sensitive/#findComment-255768 Share on other sites More sharing options...
dlf1987 Posted May 17, 2007 Author Share Posted May 17, 2007 ok so now i think its a little deeper than that, i have a check if file exists, and i cant get it to find the images cause the image names are matching exactly Link to comment https://forums.phpfreaks.com/topic/51890-php-ignore-case-sensitive/#findComment-255800 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.