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

I have to download a file from the stock exchange website through php, the link of the file is given below,

I found many codes in google but not working, Anyone who have had gone through it?

Link:

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

Try this hope this helps you.

$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);