我试图从网站上获取一个exe文件并将其放入磁盘驱动器这里是我的代码
@file_put_contents("C:\program.exe" , @file_get_contents("http://localhost/program.exe"));
请帮忙吗?
答案 0 :(得分:2)
为什么不使用copy()
?
copy("http://localhost/program.exe","C:/program.exe");
请注意,原因可能是未反转的反斜杠 - 我在这里使用了正斜杠,因为Windows会默默转换它。