Skip to content

Instantly share code, notes, and snippets.

@filippotoso
Last active April 9, 2018 12:14
Show Gist options
  • Save filippotoso/1d1e4620f802473ebb8f342c671eaf42 to your computer and use it in GitHub Desktop.
Save filippotoso/1d1e4620f802473ebb8f342c671eaf42 to your computer and use it in GitHub Desktop.
PHP remote file size
<?php
use GuzzleHttp\Client;
function remote_file_size($url) {
$client = new Client();
$response = $client->head($url);
$headers = $response->getHeader('Content-Length');
return end($headers);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment