graham23s Posted June 3, 2007 Share Posted June 3, 2007 Hi Guys, when a user uploads an image file i delete the name of the file and append a random 8 digit number to it (keeping the files original extension) so : graham23spic.jpg would be 12345678.jpg, i was wanting to add an extra bit of text to the end of the photo kinda like: 12345678.jpg-Users_Photo but i'm not sure how to do this my rename code is: // renamed avatar...//////////////////////////////////////////////////////////////// $renamed_avatar = $random_number.".".substr($_FILES["avatar"]["name"],strtolower(strlen($_FILES["avatar"]["name"]))-3,3); any help would be appreciated thanks guys Graham Link to comment https://forums.phpfreaks.com/topic/54085-solved-help-renaming-a-file/ Share on other sites More sharing options...
chigley Posted June 3, 2007 Share Posted June 3, 2007 // renamed avatar...//////////////////////////////////////////////////////////////// $renamed_avatar = "{$random_number}." . substr($_FILES["avatar"]["name"] . strtolower(strlen($_FILES["avatar"]["name"]))-3,3) . "Users_Photo"; I really wouldn't recommend putting text after the extension though.. Link to comment https://forums.phpfreaks.com/topic/54085-solved-help-renaming-a-file/#findComment-267369 Share on other sites More sharing options...
graham23s Posted June 3, 2007 Author Share Posted June 3, 2007 Hi Chigley, Thanks for the help mate , only thing is it doesn't seem to keep the original files extension it turned out like: 40716552.Users_Photo is there something i have missed out? thanks again mate Graham Link to comment https://forums.phpfreaks.com/topic/54085-solved-help-renaming-a-file/#findComment-267375 Share on other sites More sharing options...
chigley Posted June 3, 2007 Share Posted June 3, 2007 // renamed avatar...//////////////////////////////////////////////////////////////// $renamed_avatar = "{$random_number}." . substr($_FILES["avatar"]["name"],strtolower(strlen($_FILES["avatar"]["name"]))-3,3) . "Users_Photo"; My bad, sorry. Link to comment https://forums.phpfreaks.com/topic/54085-solved-help-renaming-a-file/#findComment-267378 Share on other sites More sharing options...
graham23s Posted June 3, 2007 Author Share Posted June 3, 2007 No Problem Chigley your a star mate Graham Link to comment https://forums.phpfreaks.com/topic/54085-solved-help-renaming-a-file/#findComment-267382 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.