Michdd Posted October 21, 2008 Share Posted October 21, 2008 Is there some kind of what that I can make this? Like, say image hosting sites, how they generate a different URL to save the image as everytime because sometimes someone might try to upload a image name that someone else already entered. Basically I want something that will generate a random string that I can make it save images as when they're uploaded, but it can't repeat, so it's different everytime. Kind of hard to explain it, so if you don't understand, ask a question and I'll answer it. Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/ Share on other sites More sharing options...
ratcateme Posted October 21, 2008 Share Posted October 21, 2008 i use a script like this it check to see if the file doesn't exists as well do{ $id = uniqid(); }while(file_exists($id.".jpg")); Scott. Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671080 Share on other sites More sharing options...
Rebel7284 Posted October 21, 2008 Share Posted October 21, 2008 you can use rand and test if something with that name already exists. Microtime can also give you numbers that are unlikely to repeat. Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671082 Share on other sites More sharing options...
Michdd Posted October 21, 2008 Author Share Posted October 21, 2008 i use a script like this it check to see if the file doesn't exists as well do{ $id = uniqid(); }while(file_exists($id.".jpg")); Scott. How would I use that? Or is that the exact code? Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671092 Share on other sites More sharing options...
ratcateme Posted October 21, 2008 Share Posted October 21, 2008 that is the code:) $id will be set to a string you can use as the id that no files exist with that name. Scott. Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671095 Share on other sites More sharing options...
Michdd Posted October 21, 2008 Author Share Posted October 21, 2008 that is the code:) $id will be set to a string you can use as the id that no files exist with that name. Scott. Okay thanks, one more questioned related to this. It's kind of a stupid question... Say I'm allowing more than just .jpg images to be uploaded, and I want it to generate a unique ID if it exists for other image files, say png, is there a more efficient way of making it for all the extensions I want rather than repeating the code and replacing the extension with what I want each time? Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671106 Share on other sites More sharing options...
Rebel7284 Posted October 21, 2008 Share Posted October 21, 2008 keep the same extension as the original file by cutting off the characters in the filename after the last dot and then pasting them back on? Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671116 Share on other sites More sharing options...
discomatt Posted October 21, 2008 Share Posted October 21, 2008 I always like to keep an auto increment field when storing database entries, but I didn't want my filenames to follow the same scheme. My solution was to convert to an alphanumeric, case-sensitive base. You may want to change this to case-insensitive for (some) OS X and Windows servers. <pre><?php function newBase( $i ) { static $chars = array( '0','1','2','3','4','5','6','7','8','9', 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' ); $base = count( $chars ); $num = ''; while( $i > 0 ) { $num .= $chars[ $i % $base ]; $i = floor( $i / $base ); } return strrev( $num ); } $nums = array(); for( $i=0; $i<1000; $i++ ) $nums[] = newBase( $i ); print_r( $nums ); ?></pre> Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671136 Share on other sites More sharing options...
kenrbnsn Posted October 21, 2008 Share Posted October 21, 2008 The following is a quick script I wrote to do what the OP asked: <?php $chars = array_merge(range(0,9),range('A','Z'),range('a','z')); $exts = array('jpg','gif','bmp'); function new_name($ary,$len=7) { shuffle($ary); $tfn = implode('',array_slice($ary,0,$len)); $test = glob('test_area/' . $tfn . '.{jpg,gif,bmp}',GLOB_BRACE); while (count($test) > 0) { shuffle($ary); $tfn = implode('',array_slice($ary,0,$len)); $test = glob('test_area/' . $tfn . '.{jpg,gif,bmp}',GLOB_BRACE); } return($tfn); } // // test area // for ($i=0;$i<10;$i++) { $file_name = new_name($chars); $ext = $exts[array_rand($exts)]; touch('test_area/' . $file_name . '.' . $ext); echo 'created test_area/' . $file_name . '.' . $ext . '<br>'; } ?> Ken Quote Link to comment https://forums.phpfreaks.com/topic/129438-non-repetitive-random-string-generator/#findComment-671329 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.