PHP: <? function remotefilesize($path) { $fp = fopen($path,"r"); $inf = stream_get_meta_data($fp); fclose($fp); foreach($inf["wrapper_data"] as $v) if (stristr($v,"content-length")) { $v = explode(":",$v); return trim($v[1]); } } ?>