Download external file with PHP fopen and/or cURL
问题 I can't get my download script to work with external files, the file will download but is corrupted/not working. I think it's because I can't get the filesize of the external file with filesize() function. This is my script: function getMimeType($filename){ $ext = pathinfo($filename, PATHINFO_EXTENSION); $ext = strtolower($ext); $mime_types=array( "pdf" => "application/pdf", "txt" => "text/plain", "html" => "text/html", "htm" => "text/html", "exe" => "application/octet-stream", "zip" =>