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! Quote Link to comment 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 ?> Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.