我使用此代碼在php中獲取圖像大小,並且它正在爲我完美工作。通過CURL在PHP中獲取圖像大小
$img = get_headers("http://ultoo.com/img_single.php", 1);
$size = $img["Content-Length"];
echo $size;
但是如何通過CURL來獲取? 我試過但沒有效果。
$url = 'http://ultoo.com/img_single.php';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, "Content-Length");
//curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
$filesize = $result["Content-Length"];
curl_close($ch);
echo $filesize;
它不重複,當我在給定的鏈接上使用給定的代碼時,我在Result中得到-1 。 – user2424807