Coder Profile - Show off your skills, get a coder profile.
 
 
 
The Author
Bliss
:)
Send A Message
Rating
5.00
out of 10
( 3 Ratings )
Please login to rate source codes.

Click here to register a free account with us.
General Details
PHP (Hypertext Preprocess...
Posted 1.99 Year Ago
324 Views
Received 3 Ratings
More Codes By This Author
PHP Blank FIle Creator
PHP ASCII Generator
Simple PHP OOP Flash Port...
PHP CAPTCHA Code
Email form

PHP Blank FIle Creator


Description
Ever wanted to piss off your friends by sending them a huge file, only for them to find out its empty? Probably not. Here's one anyway.
Technical
To use, just run it like this: script.php?size=5

(Where 5 is however many gigabytes you want the file to be)
Source Code
Comments
Please login to post comments.
 
VBAssassin     Posted 1.99 Year Ago
 
 
You may want to add:

set_time_limit(0);

at the very top to prevent the script dying after the max execution time.

Also you could do this to create the huge file:

$chars = '';
while (strlen($chars) < $size) {
$chars .=
'dhdjshkahdsjahdjaskhdjsahdjshdsdhsjhdasjdhasjhsjhsjjdjdjshjdhasjhdasjdhasj'
;;
}

file_put_contents('file.txt'); //PHP 5 only

Haven't tested it... but something like that :-)

and adding 1 character at a time would be much slower than adding many at a time...
since PHP will have to keep adjusting the memory slot of the variable by 1 every time
and it would also mean a lot more iterations to reach the desired file size
(especially since its in GB!)

Kind regards,
Scott
Page 1 of 1
More "PHP (Hypertext Preprocessor)" Source Codes By This Author
Recently Posted "PHP (Hypertext Preprocessor)" Source Codes
Recently Rated "PHP (Hypertext Preprocessor)" Source Codes
 
 
Latest News About Coder Profile
Coder Profile Poll
If you made money from keeping your profile up to date, say $30 and up, per month. What extra time would you spend on your profile?

No extra time
A few hours at weekends
A whole day each week
Every minute i can get free


please login to cast your vote
and see the results of this poll
Latest Coder Profile Changes
Coder Profile was last updated
1.29 Year Ago
Official Blog :: Make A Donation :: Credits :: Contact Me
Terms & Conditions :: Privacy Policy :: Documents :: Wallpapers
Version 1.46.00
Copyright © 2007 - 2010, Scott Thompson, All Rights Reserved