Current location: Hot Scripts Forums » Programming Languages » PHP » is it possible to control the download speed


is it possible to control the download speed

Reply
  #1 (permalink)  
Old 06-25-09, 11:46 AM
Wanasa Wanasa is offline
Newbie Coder
 
Join Date: Oct 2008
Posts: 90
Thanks: 0
Thanked 0 Times in 0 Posts
is it possible to control the download speed

Hi everyone ,

is it possible in PHP, to control the download speed to decrease the load on the server.

regards ,
Wanasa ,
Reply With Quote
  #2 (permalink)  
Old 06-25-09, 11:58 AM
bizzar528's Avatar
bizzar528 bizzar528 is offline
Community Liaison
 
Join Date: Sep 2004
Location: Pennsylvania, US
Posts: 1,550
Thanks: 2
Thanked 16 Times in 15 Posts
Yes.

You can add sleep() to an fgets() which adds a pause to the stream being sent back to the end user's browser.

For more information, check out this link...
Bandwidth/Download Limit - bytes
Reply With Quote
  #3 (permalink)  
Old 06-25-09, 12:22 PM
Wanasa Wanasa is offline
Newbie Coder
 
Join Date: Oct 2008
Posts: 90
Thanks: 0
Thanked 0 Times in 0 Posts
thankx man
Reply With Quote
  #4 (permalink)  
Old 06-25-09, 11:10 PM
End User's Avatar
End User End User is offline
Level II Curmudgeon
 
Join Date: Dec 2004
Posts: 3,027
Thanks: 14
Thanked 35 Times in 33 Posts
Try this:

<?php

$file = "somefile.zip"; // Filename
$speed = 50; // i.e. 50 kb/s download rate
if(file_exists($file) && is_file($file)) {
header("Cache-control: private");
header("Content-Type: application/octet-stream");
header("Content-Length: ".filesize($file));
header("Content-Disposition: filename=$file" . "%20");
flush();
$fd = fopen($file, "r");
while(!feof($fd)) {
echo fread($fd, round($speed*1024)); // $speed kb at a time
flush();
sleep(1);
}
fclose ($fd);
}

?>
__________________
I don't live on the edge, but sometimes I go there to visit.
-------------------------------------------------------------------------
Sanitize Your Data | Oracle Date & Substring Functions | Code Snippet Library | [url=http://www.codmb.com/Call Of Duty[/url]
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Download SPEED Matrix007 PHP 4 05-24-08 05:34 PM
A file download control script slabuda Script Requests 1 05-24-07 05:23 PM
Download speed estimator bittyboy Script Requests 3 09-18-06 07:56 AM


All times are GMT -5. The time now is 08:40 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.