恢复下载?直接链接?

时间:2011-02-11 20:13:14

标签: php download resume

我写了这个代码,用于将文件上传到我的主机。例如,我将一个文件从服务器A上传到服务器B,之后我想通过我的PC下载它,但是当我想下载它时,例如通过IDM ,它不支持RESUME下载。

注意:我将此代码上传到服务器B!

<?php

require('config.php');

function is_valid_url($link)
{
        $link = @parse_url($link);

        if ( ! $link) {
            return false;
        }

        $link = array_map('trim', $link);
        $link['port'] = (!isset($link['port'])) ? 80 : (int)$link['port'];
        $path = (isset($link['path'])) ? $link['path'] : '';

        if ($path == '')
        {
            $path = '/';
        }

        $path .= ( isset ( $link['query'] ) ) ? "?$link[query]" : '';

        if ( isset ( $link['host'] ) AND $link['host'] != gethostbyname ( $link['host'] ) )
        {
            if ( PHP_VERSION >= 5 )
            {
                $headers = get_headers("$link[scheme]://$link[host]:$link[port]$path");
            }
            else
            {
                $fp = fsockopen($link['host'], $link['port'], $errno, $errstr, 30);

                if ( ! $fp )
                {
                    return false;
                }
                fputs($fp, "HEAD $path HTTP/1.1\r\nHost: $link[host]\r\n\r\n");
                $headers = fread ( $fp, 128 );
                fclose ( $fp );
            }
            $headers = ( is_array ( $headers ) ) ? implode ( "\n", $headers ) : $headers;
            return ( bool ) preg_match ( '#^HTTP/.*\s+[(200|301|302)]+\s#i', $headers );
        }
        return false;
}

    if (isset($_POST['pass']) && isset($_POST['user'])){
          if ($_POST['pass'] == $pass && $_POST['user'] == $user){

      if (!$pass | !$user | !$save | !$link){
   include('./error.php');

    }elseif(is_valid_url($link) && copy($link, $upload_folder.'/'.$save)){
    include('./index.2.php');
       }else{
   include('./error.php');
}
       }else{
   include('./error.php');
    }
}
?>

感谢您的帮助......

1 个答案:

答案 0 :(得分:1)

我不能在这段代码中做出正面或反面。是否要从运行此脚本的服务器下载文件?如果是这样,HEAD请求是什么?或者您想在服务器A上运行此脚本并从服务器B下载?很混乱。如果要处理HTTP_RANGE标头Parsing HTTP_RANGE header in PHP