I was planning on hosting images on a server and wanted to use the same sort of file naming encryption mechanism. Is it just a hash?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

yes.

$filename = md5($_SERVER['REQUEST_URI'].$_SERVER['REMOTE_ADDR'].rand(50000000, 900000000000)).$ext;
link|improve this answer
1  
Really? md5 and sha1? What you want to achieve with this? – KingCrunch Jun 22 '11 at 21:20
as much as possible unique hash. However it'S not required and I should remove it. – genesis Jun 22 '11 at 21:21
2  
This will cause collisions at some point. Best is to hash the internal primary key value identifying the resource, with some salting so that it's obviously not sha(1), sha(2), etc... – Marc B Jun 22 '11 at 21:30
@Marc B would it be too much to ask for an example? Thanks – jini Jun 22 '11 at 21:35
1  
edited my answer – genesis Jun 22 '11 at 21:38
show 4 more comments
feedback

It's just a hash. If you have characters a-zA-Z0-9 and choose a hash only 6 characters long, you get 61,474,519 possible unique filenames. I doubt you'll run out =) use the mt_rand function for best results.

link|improve this answer
feedback

I realize this is late, though I was looking for the same and found the perfect solution. http://kevin.vanzonneveld.net/techblog/article/create_short_ids_with_php_like_youtube_or_tinyurl/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.