mofle Posted August 17, 2008 Share Posted August 17, 2008 I'm trying to create a dummy file generator in PHP, but with no luck. I need the generated files to have some kind of scrambled content, and I need to be able to set the size of the generated file, and the extension. I think it has something to do with the fwrite(), but I'm a PHP noob. I would really appreciate some help on this one Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/ Share on other sites More sharing options...
Fadion Posted August 17, 2008 Share Posted August 17, 2008 <?php $ext = '.txt'; $content = 'some stuff here which u generate'; $handle = fopen('somefile' . $ext, 'w'); //open the file and if it doesn't exist, create it fwrite($handle, $content); //write the content into the file fclose($handle); //close the resource ?> You can use file_put_contents() instead of the three fopen(), fwrite() and fclose() functions, but that's a personal preference of mine. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618564 Share on other sites More sharing options...
mofle Posted August 17, 2008 Author Share Posted August 17, 2008 Thanks. But how can I choose the filesize? Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618584 Share on other sites More sharing options...
Mchl Posted August 17, 2008 Share Posted August 17, 2008 By generating content of desired size. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618586 Share on other sites More sharing options...
mofle Posted August 17, 2008 Author Share Posted August 17, 2008 Sorry, I'm a noob. How would I do that? Let say I need to get a specific size of random binary numbers? Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618594 Share on other sites More sharing options...
Mchl Posted August 17, 2008 Share Posted August 17, 2008 $content = null; //make sure $content is empty $size = 1024 //that the number of chars you want to generate for ($i=0;$i<$size;$i++) { $content .= (string)rand(0,1); } Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618597 Share on other sites More sharing options...
Fadion Posted August 17, 2008 Share Posted August 17, 2008 Extending Mchl idea, you can generate content and write the file like this: <?php $str = range('a', 'z'); $size = 1024; $content = ''; $file = 'somefile.txt'; for($i=0; $i<$size; $i++){ $content .= $str[rand(0, 25)]; } $handle = fopen($file, 'w'); fwrite($handle, $content); fclose($handle); ?> The difference is that the above code generates 1024 letters. Hope that clears things out. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618612 Share on other sites More sharing options...
mofle Posted August 17, 2008 Author Share Posted August 17, 2008 Thank you! How would I create content like this? £àŒ∑a`O˙BU_WˇøvÂœwç<k‘u Ø(e_ˇl≥Ωƒ⁄≠!‡âäaLÿÄãO\sè'Eù4¬l˜ÿ(˘C£Rö\ÿARx≤Œ,ÊPjí؆9B¬ˇSZâµ],Q“zrGO?‰¬§∆πõ»ß™)3˘ÓEfiU>FA“—S`⁄å"õÂÇ–£÷u°»VÇNb›¿Jd«ö◊b∞)‚–t¬&≤P[%ú‰ÁÑiT√º“˚gÊØ ö÷»dÔa.~g†^"e±'GÑŸÛAW5Û—mÓsÕÒFéyºlH;¥˘q⁄Êä”Ö´¡òé?RyLT≠ò5`Ì…çp∏äsÔΩ3+°Æ¸M?Ê] Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618614 Share on other sites More sharing options...
Mchl Posted August 17, 2008 Share Posted August 17, 2008 This will generate random ASCII chars. Don't have an idea at this moment on how to do unicode. $content = null; //make sure $content is empty $size = 1024 //that the number of chars you want to generate for ($i=0;$i<$size;$i++) { $content .= chr(rand(32,255)); } Using rand(0,255) generates something that's more similar to what you've posted Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618616 Share on other sites More sharing options...
Fadion Posted August 17, 2008 Share Posted August 17, 2008 Just for curiosity, what do you need this generator for? You can tell us what you're trying to achieve and maybe we can give some ideas. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618675 Share on other sites More sharing options...
mofle Posted August 17, 2008 Author Share Posted August 17, 2008 Sure. I'm trying to make something like this one: http://www.xnet.se/fd/ Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618676 Share on other sites More sharing options...
Mchl Posted August 17, 2008 Share Posted August 17, 2008 Lol They should charge $5 per file You could even add some internal file structure, so that the 'trash' looks more plausible. For example, PDF files start with %PDF Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618680 Share on other sites More sharing options...
Fadion Posted August 17, 2008 Share Posted August 17, 2008 Haha thats crazy. Adding a header for the different file types (ie. for pdf: header('Content-type: application/pdf')) to provide the correct type and adding extra headers to force download should get the work done. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618689 Share on other sites More sharing options...
mofle Posted August 17, 2008 Author Share Posted August 17, 2008 Hehe, thats the idea Does anyone know how to generate the unicode characters? Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618712 Share on other sites More sharing options...
Mchl Posted August 17, 2008 Share Posted August 17, 2008 Trash is trash. You see unicode characters only because browser tries to make as much sense of it as possible. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618722 Share on other sites More sharing options...
Fadion Posted August 17, 2008 Share Posted August 17, 2008 Yep, it doesn't matter what the file contains. Just put some random values and assign it a file extension. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618724 Share on other sites More sharing options...
mofle Posted August 17, 2008 Author Share Posted August 17, 2008 No I created a .txt file from the File Destructor site. The point is that the files should look corrupted, and they don't look that with just random ASCII characters. So, is there a way to generate random unicode characters? Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618728 Share on other sites More sharing options...
Mchl Posted August 17, 2008 Share Posted August 17, 2008 They look perfectly valid corrupted to me. U can use rand(0,255) to insert all possible byte values. And Unicode is just using one or more bytes. Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618730 Share on other sites More sharing options...
redarrow Posted August 18, 2008 Share Posted August 18, 2008 That madness to even consider that one....... there even a quick way to make the user think that his file was encripted hahaha... quick version......... let the user upload the file thay want destroyed to a folder................. now let them download 10sec afther they have uploadded there file a defaut one you have ready........ bobs ur uncle all done lol..... Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-618837 Share on other sites More sharing options...
Fadion Posted August 18, 2008 Share Posted August 18, 2008 Don't know why this script exists, as you can make a "document.txt" and change it's extension to ".pdf". That way it would result to an invalid file, or am I missing something? Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-619073 Share on other sites More sharing options...
Mchl Posted August 18, 2008 Share Posted August 18, 2008 Where's fun in that Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-619083 Share on other sites More sharing options...
mofle Posted August 19, 2008 Author Share Posted August 19, 2008 Here's how I've gotten so far. I'm having some problems with $content. How can I have the random character written to the $content variable? <?php $content = null; $size = $_GET['size']; $filename = $_GET['filename'] . "." . $_GET['extension']; $content = for ($i = 0; $i < $size; $i++) { chr(rand(0,255)) } if ($extension == "doc") { header("Content-type: application/msexcel"); header("Content-Disposition: attachment; filename=$filename"); header("Pragma: no-cache"); header("Expires: 0"); print "$header\n$content"; } elseif ($extension == "txt") { header("Content-type: application/msword"); header("Content-Disposition: attachment; filename=$filename"); header("Pragma: no-cache"); header("Expires: 0"); print "$header\n$content"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-620398 Share on other sites More sharing options...
Mchl Posted August 19, 2008 Share Posted August 19, 2008 $content = ""; for ($i = 0; $i < $size; $i++) { $content .= chr(rand(0,255)) // .= <- stands for 'add to existing string' } Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-620401 Share on other sites More sharing options...
mofle Posted August 19, 2008 Author Share Posted August 19, 2008 Thanks, but it doesn't work. Nothing happens when I implement your code. My current code: <?php $size = $_GET['size']; $filename = $_GET['filename'] . "." . $_GET['extension']; $content = ''; for ($i = 0; $i < $size; $i++) { $content .= chr(rand(0, 255)); } if ($extension == "doc") { header("Content-type: application/msexcel"); header("Content-Disposition: attachment; filename=$filename"); header("Pragma: no-cache"); header("Expires: 0"); print "$header\n$content"; } elseif ($extension == "txt") { header("Content-type: application/msword"); header("Content-Disposition: attachment; filename=$filename"); header("Pragma: no-cache"); header("Expires: 0"); print "$header\n$content"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-620443 Share on other sites More sharing options...
Mchl Posted August 19, 2008 Share Posted August 19, 2008 Add echo $content; at the end Quote Link to comment https://forums.phpfreaks.com/topic/120076-generate-dummy-files/#findComment-620446 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.