php自定义函数: 下载远程文件 httpcopy
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php自定义函数: 下载远程文件 httpcopy相关的知识,希望对你有一定的参考价值。
<?php function httpcopy($url, $file="", $timeout=60) { $file = empty($file) ? pathinfo($url,PATHINFO_BASENAME) : $file; $dir = pathinfo($file,PATHINFO_DIRNAME); !is_dir($dir) && @mkdir($dir,0755,true); $url = str_replace(" "," ",$url); if(function_exists(‘curl_init‘)) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $temp = curl_exec($ch); if(@file_put_contents($file, $temp) && !curl_error($ch)) { return $file; } else { return false; } } else { $opts = array( "http"=>array( "method"=>"GET", "header"=>"", "timeout"=>$timeout) ); $context = stream_context_create($opts); exit($url); if(@copy($url, $file, $context)) { //$http_response_header return $file; } else { return false; } } } ?>
;
以上是关于php自定义函数: 下载远程文件 httpcopy的主要内容,如果未能解决你的问题,请参考以下文章