curl php保存文件在文件时间戳中保存修改日期

时间:2017-04-19 05:11:06

标签: php curl timestamp filetime

我的代码工作正常,但没有从服务器上保存文件时间/修改日期......我添加了文件时间选项以卷曲但写文件仍然将文件写为保存的时刻(当前日期)任何建议?我有视力障碍,所以如果我弄错了对不起,请提前谢谢。

$ filename =" image.jpg" $ imgurl =" http://www.example.com/image.jpg"

$ch = curl_init(); 
curl_setopt ($ch, CURLOPT_URL, $imgurl); 
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); 
// Getting binary data 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); 
curl_setopt($ch, CURLOPT_FILETIME, TRUE);
$image = curl_exec($ch); 
curl_close($ch); 

file_put_contents($filename, $image);

0 个答案:

没有答案