程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php帶密碼功能並下載遠程文件保存本地指定目錄 修改加強版

php帶密碼功能並下載遠程文件保存本地指定目錄 修改加強版

編輯:PHP綜合

原作者BlueStyle 提示 改進地方有

以前的算法是等文件下載完才計算,
現在這個直接在在獲取文件時候就計算大小
加了容錯語句
增加了判斷目錄,沒有目錄自動創建
把計算文件大小的算法換了個
以前的那個光計算文件大小就7行代碼,
現在這個只要兩行

轉載請保留原作者版權信息,由於作者是政府人員,為不惹麻煩,請保留此段文字完整性
html代碼:
復制代碼 代碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>快樂飛揚博客 - 遠程文件下載</title>
</head>
<body >
<form method="post">
<li>File: <input name="url" size="40" />
<input name="submit" type="submit" /></li>
<li>Pass: <input name="password" type="password" /></li>
</form>

PHP代碼:
復制代碼 代碼如下:
<?php
# Copyright 2010 快樂飛揚
# http://www.klfy.org/ 供新手學習參考
set_time_limit (0); //不限時 24 * 60 * 60
$password = 'admin'; //管理密碼
$pass = $_POST['password'];
if ($pass == $password) {
class runtime {
var $StartTime = 0;
var $StopTime = 0;
function get_microtime(){list($usec, $sec) = explode(' ', microtime());
return ((float)$usec + (float)$sec);}
function start() {$this->StartTime = $this->get_microtime();}
function stop() {$this->StopTime = $this->get_microtime();}
function spent() { return round(($this->StopTime - $this->StartTime) * 1000, 1);}
}
$runtime= new runtime;
$runtime->start();
if (!isset($_POST['submit'])) die();
$destination_folder = './Download/'; // 下載的文件保存目錄。必須以斜槓結尾
if(!is_dir($destination_folder)) //判斷目錄是否存在
mkdir($destination_folder,0777); //若無則創建,並給與777權限 windows忽略
$url = $_POST['url'];
$headers = get_headers($url, 1); //得到文件大小
if ((!array_key_exists("Content-Length", $headers))) {$filesize=0; }
$newfname = $destination_folder . basename($url);
$file = fopen ($url, "rb");
if ($file) {
$newf = fopen ($newfname, "wb");
if ($newf)
while(!feof($file)) {fwrite($newf, fread($file, 1024 * 8 ), 1024 * 8 );}
}
if ($file) {fclose($file);}
if ($newf) {fclose($newf);}
$runtime->stop();
echo '<br /><li>下載耗時:<font color="blue"> '.$runtime->spent().' </font>微秒,文件大小<font color="blue"> '.$headers["Content-Length"].' </font>字節</li>';
echo '<br /><li><font color="red">下載成功! '.$showtime=date("Y-m-d H:i:s").'</font></li>';
}elseif(isset($_POST['password'])){
echo '<br /><li><font color="red">密碼錯誤!請從新輸入密碼!</font></li>';
}
?>
</body>
</html>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved