Welcome Guest, Not a member yet? Register   Sign In
Copy a remote image with copy(). Good or bad?
#1

[eluser]codex[/eluser]
I want to grab images from a remote source. Copy() seems to work fine, but I was wondering if copy() is the best function for this. Is there a better/more efficient way?
#2

[eluser]codex[/eluser]
curl seems to do a better job.

Code:
$file_name = $this->input->post('image_src');
$md5 = md5($file_name . rand());
            
$ch = curl_init($file_name);
$fp = fopen('./assets/photos/'. $md5 .'.jpg', 'w');
            
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
            
curl_exec($ch);
curl_close($ch);
fclose($fp);




Theme © iAndrew 2016 - Forum software by © MyBB