Last Updated: February 25, 2016
·
4.951K
· narven

Check if a file exists with php and curl

$ch = curl_init($image_path);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$retcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

// $retcode > 400 = not found
// $retcode = 200 = found.