dark_mirage Posted April 12, 2008 Share Posted April 12, 2008 Hey guys, I have a script that allows the member to upload an image to our server. The script checks to see if the filename already exists on our server, and if so, displays a message saying so. Instead of this, i would prefer it to insert a random number after the filename, rather than rejecting it: if (file_exists("uploads/" . $_FILES["file"]["name"])) { insert number at end (but before the file extension) } Due to the fact the number needs to be added at the end of the filename, but before the file extension, i couldn't figure out how to do it. Any help will be much appreciated Link to comment https://forums.phpfreaks.com/topic/100763-solved-insert-into-a-string/ Share on other sites More sharing options...
Barand Posted April 12, 2008 Share Posted April 12, 2008 list ($name, $ext) = explode ('.', $_FILES["file"]["name"]); $newname = $name . $randnum . '.' . $ext; Link to comment https://forums.phpfreaks.com/topic/100763-solved-insert-into-a-string/#findComment-515379 Share on other sites More sharing options...
mjahkoh Posted April 12, 2008 Share Posted April 12, 2008 Simple <?php $extension = strtolower(strrchr($_FILES['mypicture']['name'],".")); $randomnumber = "abc"; $newfilename = $randomnumber . '.' . $extension; ?> Link to comment https://forums.phpfreaks.com/topic/100763-solved-insert-into-a-string/#findComment-515381 Share on other sites More sharing options...
Barand Posted April 12, 2008 Share Posted April 12, 2008 Simple <?php $extension = strtolower(strrchr($_FILES['mypicture']['name'],".")); $randomnumber = "abc"; $newfilename = $randomnumber . '.' . $extension; ?> simple if you want the result to be abc..ext Link to comment https://forums.phpfreaks.com/topic/100763-solved-insert-into-a-string/#findComment-515392 Share on other sites More sharing options...
dark_mirage Posted April 12, 2008 Author Share Posted April 12, 2008 lol thanks for the quick replys. I decided to go with your solution Barand, being as it worked:p Thanks a lot. Link to comment https://forums.phpfreaks.com/topic/100763-solved-insert-into-a-string/#findComment-515394 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.