想从服务器下载图像

时间:2011-05-17 11:57:08

标签: php ftp file-transfer

我想将站点从共享托管服务器转移到专用server.current服务器有文件夹,其中包括约。 16000张图片......我们无法使用FTP下载这些图片。我没有SSH权限?我如何从这个共享托管服务器下载图像。

3 个答案:

答案 0 :(得分:1)

  

我们无法使用FTP下载这些图片

无意义。 FTP(协议)完全能够下载16000个文件。如果您的FTP程序导致您遇到麻烦,只需选择一个更好的FTP程序。如果你可以处理命令行应用程序,wget很好,因为它支持递归和延续。

答案 1 :(得分:0)

除非它们位于Web应用程序服务器的Web根目录中的目录中,否则您将无法运行。

答案 2 :(得分:0)

全部压缩,改编自http://davidwalsh.name/create-zip-php

    <?php

        function create_zip($files = array(),$destination = '',$overwrite = false) {
          //if the zip file already exists and overwrite is false, return false
          if(file_exists($destination) && !$overwrite) { return false; }
          //vars
          $valid_files = array();
          //if files were passed in...
          if(is_array($files)) {
            //cycle through each file
            foreach($files as $file) {
              //make sure the file exists
              if(file_exists($file)) {
                $valid_files[] = $file;
              }
            }
          }
          //if we have good files...
          if(count($valid_files)) {
            //create the archive
            $zip = new ZipArchive();
            if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
              return false;
            }
            //add the files
            foreach($valid_files as $file) {
              $zip->addFile($file,$file);
            }
            //debug
            //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;

            //close the zip -- done!
            $zip->close();

            //check to make sure the file exists
            return file_exists($destination);
          }
          else
          {
            return false;
          }
        }


    //glob images folder into an array
    foreach (glob("*.jpg") as $filename) {
        $files_to_zip[]='images/'.$filename;
    }
    //create the zip
    $result = create_zip($files_to_zip,'my-images.zip');
    if($result==true){echo'<a href="my-images.zip">Download Images</a>';
}else{
echo'Could not create zip';}

    ?>