0

我在 php/javascript/xul 中搜索了一个函数/命令,它可以将文件从 http 服务器传输到本地目录,但没有找到任何足够的答案。

是否有任何函数/命令可以使用 PHP/Javascript/XUL 中的任何一个来完成这项工作?

4

3 回答 3

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 回答
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 回答