gpt4 book ai didi

php - 需要帮助使用 PHP 执行 .bat 文件

转载 作者:行者123 更新时间:2023-12-02 07:44:17 26 4
gpt4 key购买 nike

我正在尝试使用简单的 php 脚本执行 .bat 文件 (m.bat):

<?php
if(isset($_POST['submit']))
{
echo exec('m.bat');
echo "Done!";
} else {
?>
<form action="" method="post">
<input type="submit" name="submit" value="Run">
</form>
<?php
}
?>

这只会在浏览器中显示 .bat 文件的内容,如果我在“exec”之前删除“echo”,它什么也不做。 :(

最佳答案

exec() 执行命令,但不打开文件。

需要读取m.bat的内容才能执行。

试试这个

$file = file_get_contents("m.bat");
$output = exec($file);
print_r($output);

希望对您有所帮助。

关于php - 需要帮助使用 PHP 执行 .bat 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8144179/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com