对不起,回答了才看到原来是PHP版,呵呵,不好意思.
你可以直接连接它的URL就好了.

解决方案 »

  1.   

    右键,另存为。
    或按 [Pring Scrn SysRq] 键
      

  2.   

    我说的是php代码,什么右键啊,晕
      

  3.   

    那你说的详细一点可以吗!come on 告诉我你的构思。
      

  4.   

    就比如说 有一个图片的url地址
    如:http://***/ss01.gif
    那么请用php程序自动把ss01.gif下载到本机
      

  5.   

    fopen
    (PHP 3, PHP 4 >= 4.0.0)fopen -- Opens file or URL
    Descriptionint fopen (string filename, string mode [, int use_include_path])
    If filename begins with "http://" (not case sensitive), an HTTP 1.0 connection is opened to the specified server, the page is requested using the HTTP GET method, and a file pointer is returned to the beginning of the body of the response. A 'Host:' header is sent with the request in order to handle name-based virtual hosts. Note that the file pointer allows you to retrieve only the body of the response; you cannot access the HTTP response header using this function. Versions prior to PHP 4.0.5 do not handle HTTP redirects. Because of this, directories must include trailing slashes. If filename begins with "ftp://" (not case sensitive), an ftp connection to the specified server is opened and a pointer to the requested file is returned. If the server does not support passive mode ftp, this will fail. You can open files for either reading or writing via ftp (but not both simultaneously). If filename is one of "php://stdin", "php://stdout", or "php://stderr", the corresponding stdio stream will be opened. (This was introduced in PHP 3.0.13; in earlier versions, a filename such as "/dev/stdin" or "/dev/fd/0" must be used to access the stdio streams.) If filename begins with anything else, the file will be opened from the filesystem, and a file pointer to the file opened is returned. If the open fails, the function returns FALSE. mode may be any of the following: 
    'r' - Open for reading only; place the file pointer at the beginning of the file. 'r+' - Open for reading and writing; place the file pointer at the beginning of the file. 'w' - Open for writing only; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it. 'w+' - Open for reading and writing; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it. 'a' - Open for writing only; place the file pointer at the end of the file. If the file does not exist, attempt to create it. 'a+' - Open for reading and writing; place the file pointer at the end of the file. If the file does not exist, attempt to create it. 
    Note: The mode may contain the letter 'b'. This is useful only on systems which differentiate between binary and text files (i.e. Windows. It's useless on Unix). If not needed, this will be ignored. You can use the optional third parameter and set it to "1", if you want to search for the file in the include_path, too. Example 1. fopen() example$fp = fopen ("/home/rasmus/file.txt", "r");
    $fp = fopen ("/home/rasmus/file.gif", "wb");
    $fp = fopen ("http://www.php.net/", "r");
    $fp = fopen ("ftp://user:[email protected]/", "w");
          
     
     
    If you are experiencing problems with reading and writing to files and you're using the server module version of PHP, remember to make sure that the files and directories you're using are accessible to the server process. On the Windows platform, be careful to escape any backslashes used in the path to the file, or use forward slashes. 
     
    $fp = fopen ("c:\\data\\info.txt", "r");
          
     See also fclose(), fsockopen(), socket_set_timeout(), and popen().    
    Prev Home Next 
    flock Up fpassthru 
     
     
      

  6.   

    $fp = fopen ("http://www.csdn.net/images/ad/vsnet_120.gif","r");
    $fp_fread = fread ($fp,100000000);
    fclose ($fp);$fp = fopen ("vsnet_120.gif","w");
    flock  ($fp,2);
    fputs  ($fp,$fp_fread);
    fclose ($fp);