$file = array('size' => 0);
list($file['width'], $file['height']) = getimagesize($url[0]);
$c = curl_init($url[0]);
curl_setopt($c, CURLOPT_NOBODY, true);
curl_setopt($c, CURLOPT_HEADER, true);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
if (ini_get('open_basedir')...