grantson Posted June 17, 2010 Share Posted June 17, 2010 hi guys I am trying to figure out how to take a url of a picture stored in a variable and convert it to the url of the corresponding thumbnail e.g. http://www.mysite.com/gallery/normal_img1.jpg to http://www.mysite.com/gallery/thumb_img1.jpg i thought this would be easy using strtok and concatenating the strings but i cant get my head around it any help hugely appreciated Grant Quote Link to comment https://forums.phpfreaks.com/topic/205099-help-with-urls/ Share on other sites More sharing options...
trq Posted June 17, 2010 Share Posted June 17, 2010 $normal = 'http://www.mysite.com/gallery/normal_img1.jpg'; $thumb = str_replace('normal', 'thumb', $normal); Quote Link to comment https://forums.phpfreaks.com/topic/205099-help-with-urls/#findComment-1073648 Share on other sites More sharing options...
grantson Posted June 17, 2010 Author Share Posted June 17, 2010 perfect thanks Quote Link to comment https://forums.phpfreaks.com/topic/205099-help-with-urls/#findComment-1073658 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.