这篇文章主要为大家详细介绍了PHP 获取远程文件大小3种的单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
1、使用file_get_contents()代码如下:
<?php
/* 四海网 www.q1010.com */
$file = file_get_contents($url);
echo strlen($file);
?>
代码如下:
<?php
/* 四海网 www.q1010.com */
$header_array = get_headers($url, true);
$size = $header_array['Content-Length'];
echo $size;
?>
代码如下:
<?php
/* 四海网 www.q1010.com */
function get_file_size($url) {
$url = parse_url($url);
if (empty($url['host'])) {
return false;
}
$url['port'] = empty($url['post']) ? 80 : $url['post'];
$url['path'] = empty($url['path']) ? '/' : $url['path'];
$fp = fsockopen($url['host'], $url['port'], $error);
if($fp) {
fputs($fp, "GET " . $url['path'] . " HTTP/1.1\r\n");
fputs($fp, "Host:" . $url['host']. "\r\n\r\n");
while (!feof($fp)) {
$str = fgets($fp);
if (trim($str) == '') {
break;
}elseif(preg_match('/Content-Length:(.*)/si', $str, $arr)) {
return trim($arr[1]);
}
}
fclose ( $fp);
return false;
}else {
return false;
}
}
?>
本文来自:http://www.q1010.com/173/14986-0.html
注:关于PHP 获取远程文件大小3种的单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:远程文件
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。