0

http サーバーからローカル ディレクトリにファイルを転送できる php/javascript/xul の関数/コマンドを Web で検索しましたが、十分な回答が見つかりませんでした。

PHP/Javascript/XUL のいずれかを使用して、このジョブを実行できる関数/コマンドはありますか?

4

3 に答える 3

0

これは JavaScript では実行できませんが、PHP では適切なヘッダーを送信してから、次のようにファイルを提供する必要があります。

例: CSV ファイルの強制ダウンロード

header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=example.csv');
header('Pragma: no-cache');
readfile("/path/to/yourfile.csv");
于 2012-10-31T08:03:01.277 に答える
0

ファイルダウンロード用のphpスクリプトは次のとおりです。

    if (file_exists($file))
    {
        if (FALSE!== ($handler = fopen($file, 'r')))
        {
            header('Content-Description: File Transfer');
            header('Content-Type: application/octet-stream');
            header('Content-Disposition: attachment; filename='.basename($file));
            header('Content-Transfer-Encoding: chunked'); 
            header('Expires: 0');
            header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
            header('Pragma: public');       
            //Send the content in chunks
            while(false !== ($chunk = fread($handler,4096)))
            {
                echo $chunk;
            }
        }
        exit;
    }
    echo "<h1>Content error</h1><p>The file does not exist!</p>";
于 2012-10-31T09:14:54.467 に答える
0

http://php.net/manual/en/book.ftp.php、ここに良い例があります http://www.php.net/manual/en/ftp.examples-basic.php

この関数を試してください http://www.php.net/manual/en/function.ftp-get.php

于 2012-10-31T08:00:05.557 に答える