http サーバーからローカル ディレクトリにファイルを転送できる php/javascript/xul の関数/コマンドを Web で検索しましたが、十分な回答が見つかりませんでした。
PHP/Javascript/XUL のいずれかを使用して、このジョブを実行できる関数/コマンドはありますか?
http サーバーからローカル ディレクトリにファイルを転送できる php/javascript/xul の関数/コマンドを Web で検索しましたが、十分な回答が見つかりませんでした。
PHP/Javascript/XUL のいずれかを使用して、このジョブを実行できる関数/コマンドはありますか?
これは JavaScript では実行できませんが、PHP では適切なヘッダーを送信してから、次のようにファイルを提供する必要があります。
例: CSV ファイルの強制ダウンロード
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=example.csv');
header('Pragma: no-cache');
readfile("/path/to/yourfile.csv");
ファイルダウンロード用の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>";
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