Skip to content

Instantly share code, notes, and snippets.

@kicktv
kicktv / get-remote-filesize.php
Last active April 27, 2026 13:21
php get remote file size
<?php
//php get remote file size
$url = "http://www.html-editor.tk/videos/sintel.mp4";
$head = array_change_key_case(get_headers($url, TRUE));
$size = $head['content-length'];
echo $size;
?>