为什么我php用header下载图片,打开是空的,我看到你解决了,求帮助
发布网友
发布时间:2022-04-06 05:01
我来回答
共1个回答
热心网友
时间:2022-04-06 06:30
function curlDownloadRemote($remote, $local){
$curl = curl_init($remote);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
$imageData = curl_exec($curl);
curl_close($curl);
$dir = dirname($local);
if(! is_dir($dir)){
@mkdir($dir, 0755, true);
}
$tp = @fopen($local, 'w');
fwrite($tp, $imageData);
fclose($tp);
}