是否可以直接将大于200 mb的文件下载到我的网络托管上,这样我就不必将该文件下载到我的计算机上,然后使用我的ftp客户端上传.
因为我不使用ssh我不能使用wget.我在考虑PHP或per或cgi可能是..
(对所有想法开放……)
因为我不使用ssh我不能使用wget.我在考虑PHP或per或cgi可能是..
(对所有想法开放……)
+==============+ +--------+ | Big server | -----------+ +--->|web host| +==============+ | +------+ | +--------+ +-->| MyPC |-----+ | +------+ | +========+ +---->| client | +========+
要么
+============+ | Big Server | ---+ +============+ | +----------+ +--------------------->| Web Host | +----------+ | +------+ | +========+ | MyPC | +----->| client | +------+ +========+
请帮忙….
对于cURL
原文链接:https://www.f2er.com/php/134508.html$url = "http://path.com/file.zip"; $fh = fopen(basename($url),"wb"); $ch = curl_init($url); curl_setopt($ch,CURLOPT_FILE,$fh); curl_exec($ch); curl_close($ch);