从证券交易所网站下载文件

时间:2017-01-20 06:00:47

标签: php curl download

我必须通过php从证券交易所网站下载一个文件,该文件的链接如下:

我在google中找到了很多代码但没有工作,任何人都经历过这个代码?

链接

  

https://psx.com.pk/scripts/communicator.php?f=20170119_new.lis.Z&l=Hd

1 个答案:

答案 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);