dongwu9972 2010-07-19 04:59
浏览 48
已采纳

PHP:从ftp-server下载任何文件到harddrive?

i really really need your help. I'm successfully setting up a connection to my ftp server. However I can't figure out how I can download a dynamic file from my server. I guess this would help a lot of other people as well cause i couldn't find a tutorial or explanation anywhere on the web.

I'm simply listing all of my files on my ftp. If i click on one i call download.php which connects again to the server and should download the file to my harddrive. I was able to auto-prompt a download window and a file gets downloaded to my hdd. however only a damaged file where no headers are set.

/* path to files on ftp server … e.g. /folder/folder/name_of_file.jpg */
$p_arr = explode("/", $path);
/* the file name … e.g name_of_file.jpg */
$file = end($p_arr);

//$finfo = finfo_open(FILEINFO_MIME_TYPE); //returns a fatal error - function not found 
//$mimetype = finfo_file($finfo, $file);
//finfo_close($finfo);

//filetype($file)

/* creating a temporyry file to save to */
$tempFile = tempnam("/tmp", "FOO");

if(ftp_get($conn_id, $tempFile, $file, FTP_BINARY)){ 
    /*header Content-type: must be dynamic*/
    //header('Content-type:' . $mimetype);

    /*header to auto_prompt download window*/
    header('Content-Disposition: attachment; filename="'. $file .'"');
    readfile($tempFile);
} else { 
    echo "There was a problem <br>";
    echo $file . "<br>"; //e.g. image.jpg
}

/* deleting the file after the process */
//unlink($tempFile);

1.) i can't figure out why ftp_get returns false. The connection gets set up and the file exists in the right directory. 2.) i don't know how i can find out the mimetype of the file on the server and give it the downloaded file, so it's not damaged.

please help me out here, i'm really stuck. thank you in advance

  • 写回答

3条回答 默认 最新

  • doulao2128 2010-07-19 05:09
    关注

    Try to save it locally first and then push it back to browser.

    Use that code to save your file locally.

    <?php
                    // define some variables
            $folder_path = "YOUR FOLDER PATH";
            $local_file = "LOCAL FILE PATH";
            $server_file = "SERVER FILE PATH";
    
            //-- Connection Settings
            $ftp_server = "IP ADDRESS"; // Address of FTP server.
            $ftp_user_name = "USERNAME"; // Username
            $ftp_user_pass = "PASSWORD"; // Password
            #$destination_file = "FILEPATH";
    
            // set up basic connection
            $conn_id = ftp_connect($ftp_server);
    
            // login with username and password
            $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
    
            // try to download $server_file and save to $local_file
            if (ftp_get($conn_id, $local_file, $server_file, FTP_BINARY)) {
                echo "Successfully written to $local_file
    ";
            } else {
                echo "There was a problem
    ";
            }
    
            // close the connection
            ftp_close($conn_id);
    ?>
    

    I also found this, maybe it could help you

    My FTP-Server always responded "bool(false)" instead of presenting me a directory-listing. I had to add ftp_pasv($conn_id, true); right after the $login_result = ftp_login(...); line. After that it just worked fine.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?