ホームページ >バックエンド開発 >PHPチュートリアル >このPHPリモートダウンロードコードについて!解決方法

このPHPリモートダウンロードコードについて!解決方法

WBOY
WBOYオリジナル
2016-06-13 13:35:04933ブラウズ

このphpリモートダウンロードコードについて! ! ! ! ! ! ! ! ! ! ! ! !

PHP コード
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--> <form method="post">
<input name="url" size="50" />
<input name="submit" type="submit" />
</form>
< ?php
// maximum execution time in seconds
set_time_limit (24 * 60 * 60);
if (!isset($_POST['submit'])) die();
// folder to save downloaded files to. must end with slash
$destination_folder = 'temp/';
 
$url = $_POST['url'];
$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);
}
?>



このコード、その保存アドレスは temp/ です。このファイルの保存アドレスが GET からのデータを受け入れるようにする方法はありますか? php?file=index
ディレクトリは次のようにする方法はありますか?


---- --解決策------ ---------------

$destination_folder = 'temp/';

$destination_folder = $_GET['file'] '/'; に変更されました。
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。