Skip to content

Instantly share code, notes, and snippets.

@zoxon
Last active February 13, 2025 11:32
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;
}
@rekrios
Copy link

rekrios commented Feb 13, 2025

Load full file just to get it's size? NO NO NO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment