Posts by diegofcruz • 21 points
1 post
-
2
votes1
answer251
viewsA: How to get file size on an external server?
You need to have the Curl extension , with which you can make an HTTP HEAD request to the remote server. The answer will let you know how great the file is. Example: $ch = curl_init();…