PHP 获取远程文件大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 获取远程文件大小相关的知识,希望对你有一定的参考价值。

function remote_filesize($url, $user = "", $pw = "")
{
	ob_start();
	$ch = curl_init($url);
	curl_setopt($ch, CURLOPT_HEADER, 1);
	curl_setopt($ch, CURLOPT_NOBODY, 1);

	if(!empty($user) && !empty($pw))
	{
		$headers = array('Authorization: Basic ' .  base64_encode("$user:$pw"));
		curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
	}

	$ok = curl_exec($ch);
	curl_close($ch);
	$head = ob_get_contents();
	ob_end_clean();

	$regex = '/Content-Length:\s([0-9].+?)\s/';
	$count = preg_match($regex, $head, $matches);

	return isset($matches[1]) ? $matches[1] : "unknown";
}

以上是关于PHP 获取远程文件大小的主要内容,如果未能解决你的问题,请参考以下文章

PHP 获取远程文件大小

PHP 获取远程文件大小

PHP 获取远程文件大小的3种解决方法

PHP获取远程和本地文件信息(汇总)

PHP 获取远程图像,调整大小并保存

php怎么高效获取远程图片尺寸