Skip to content

Instantly share code, notes, and snippets.

@kicktv
Last active May 25, 2020 00:09
Show Gist options
  • Save kicktv/ed7022f273e24bf6037fdb4853ade23d to your computer and use it in GitHub Desktop.
Save kicktv/ed7022f273e24bf6037fdb4853ade23d to your computer and use it in GitHub Desktop.
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;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment