Jump to content

[SOLVED] Insert into a string?


dark_mirage

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.