我需要帮助下载.exe文件并将其转换为.zip(PS:我不想在.zip中压缩它,我想在.zip中将其转换)。
示例:
http://domain.com/exe?response=redirect
它会给我一个.exe文件,我想将它转换为.zip并存储在我的服务器中。
我试过这段代码:
<?php
$url = 'http://domain.com/exe?response=redirect';
$img = '/home/username/public_html/file.zip';
file_put_contents($img, file_get_contents($url));
?>
但它无法正常工作。任何人都可以帮我这样做吗?提前致谢。