Skip to content

Instantly share code, notes, and snippets.

@zoxon
Last active August 29, 2015 13:58
Show Gist options
  • Save zoxon/10368362 to your computer and use it in GitHub Desktop.
Save zoxon/10368362 to your computer and use it in GitHub Desktop.
PHP: Get file size by URL
function filesizeUrl($url) {
return ($data = @file_get_contents( $url )) ? strlen( $data ) : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment