我必须通过php从证券交易所网站下载一个文件,该文件的链接如下:
我在google中找到了很多代码但没有工作,任何人都经历过这个代码?
链接:
https://psx.com.pk/scripts/communicator.php?f=20170119_new.lis.Z&l=Hd
答案 0 :(得分:0)
试试这个希望对你有帮助。
$url="https://psx.com.pk/scripts/communicator.php?f=20170119_new.lis.Z&l=Hd";
header('Content-type: application/zip');
header('Content-Disposition: attachment; filename="yourfilename.zip"');
readfile($url);