Downloader Function With PHP

Line Break
Penulis: Admin (226 Articles)
Admin
Memberikan pembelajaran kepada Anda seputar Web Development, Desain Grafis, dll, secara gratis. Berawal dari hoby sharing akan ilmu web development di tahun 2007 oleh 2 mahasiswa.
Contact:
Homepage : http://www.ilmuwebsite.com
Ingin menjadi penulis artikel di ilmuwebsite? Klik >> Daftar

Downloader Function With PHP tutorial php

Fungsi dibawah ini merupakan fungsi buatan untuk mendownload file dari remote HTTP ke local harddisk. Tentunya hanya file yang memiliki hak akses 0777 saja yang akan bisa didownload.

PHP Code:

<?
define (”_MAX_DOWNLOAD_RATE”, 20.5*1024); //20kb / second
define (”_DOWNLOAD”, “D:/down-test/”);
function putItNow($file_source, $file_target)
{
  // Preparations
  $file_source = str_replace(’ ‘, ‘%20′, html_entity_decode($file_source)); // fix url format
  if (file_exists($file_target)) { chmod($file_target, 0777); } // add write permission

  // Begin transfer
  if (($rh = fopen($file_source, ‘rb’)) === FALSE) { return false; } // fopen() handles
  if (($wh = fopen($file_target, ‘wb’)) === FALSE) { return false; } // error messages.
  while (!feof($rh))
  {
    // unable to write to file, possibly because the harddrive has filled up
    if (fwrite($wh, fread($rh, round(_MAX_DOWNLOAD_RATE))) === FALSE) { fclose($rh); fclose($wh); return false; }
  }

  // Finished without errors
  fflush($rh);
  fflush($wh);
  return true;
}

if(isset($_POST['submit']) && !empty($_POST['source']))
{
    $target = _DOWNLOAD.basename($_POST['source']);
    if(putItNow($_POST['source'], $target))
    {
        echo “Download for = “.$_POST['source'].” into $target was DONE successfully !!!”;
    }
    else
    {
        echo “Unable to download = “.$_POST['source'];
    }   
}
?>
<h2>PHP DOWNLOADER
</h2>
<form action=”" method=”post”>
<input name=”source” type=”text” size=”20″ />
<input name=”submit” type=”submit” value=”download” />
</form>

Definisi _MAX_DOWNLOAD_RATE digunakan untuk mendefinisikan nilai max download rate saat mendownload file, yakni 20 kb / second
sedangkan definisi _DOWNLOAD menentukan lokasi hasil download pada harddisk

diperlukan fungsi str_replace untuk menggantikan string %20 menjadi spasi. Sedangkan urutan download data na adalah:

1. fopen
2. fwrite
3. fread
4. fclose
5. fflush

demikian dan terimakasih, wkwkwkwkwkwkw.. bwat al-k thanks !!!!
bwat ephii jangan patah hati molo hihi…
bwat anggi jangan lupa berdoa sebelum tidur, huwahahahahahaha ….


Cari artikel lain :

Downloader Function With PHP tutorial php


Downloader Function With PHP tutorial php Video Tutorial : Belajar Membuat Website
Dapatkan Video Tutorial : Belajar Membuat Website. Membahas Tuntas Cara Membuat Web secara mudah, lengkap, dan murah.
Downloader Function With PHP tutorial php Template Joomla
CD koleksi template joomla berkualias, cantik, indah dan menarik, di kemas dalam 4 CD, dapatkan di sini ...
Downloader Function With PHP tutorial php Paket CD Hacking v3
Tools, Articles, Movies, Exploits, Trojans, Programming, PDA, Advisories, Mobile, BT4
Downloader Function With PHP tutorial php Ilmuwebsite Services
1. Joomla2Wordpress Conversion Services kami akan mengkonversi mirip dengan website aslinya, 2. PSD/JPEG to CMS? Anda desain kami jadikan CMS. Klik disini

Leave a Reply