<?php
function getSize($file) {
$array = get_headers($file);
foreach ($array AS $key => $value) {
if (preg_match('#Content-Length:#i', $value)) {
$res = $array[$key];
}
}
if (!empty($res)) {
$size = explode(" ", $res);
return $size[1];
} else {
return 'error';
}
}
$file = 'http://wap.sasisa.ru/fc/get/0/578487/wap_sasisa_ru_dj_antoine_iv_use_a000.mp3';
echo getSize($file);
?>