运行程序的网页

发布于 2024-11-26 16:35:37 字数 309 浏览 1 评论 0原文

大家好,我是 PHP 新手,所以请放心。 :)

我正在尝试制作一个最低限度的网页来在我的计算机上运行各种东西。

例如,我有一个按钮并尝试运行以下命令:

<?php
exec("taskkill /IM iexplore.exe");
?>

但是,什么也没有发生。我在谷歌和这里阅读了很多内容,但我找不到任何可以解释这个问题的内容。我使用的是 Win 7,禁用了 UAC,运行的是最新版本的 WAMP。 (到目前为止我发现的所有内容都涉及 IIS)

有人能给我指出正确的方向吗?

Hi all I'm brand new to PHP so go easy here. :)

I am attempting to make a bare minimum webpage to run various things on my computer.

For example, I have a button and am attempting to run the following:

<?php
exec("taskkill /IM iexplore.exe");
?>

However, nothing happens. I've read a bunch on Google and here, but I can't find anything that explains this problem. I am on Win 7, UAC disabled, running the latest version of WAMP. (Everything I've found so far addresses IIS)

Could some one point me in the right direction?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱情眠于流年 2024-12-03 16:35:37

我认为您正在寻找的是 shell_exec

您也可以使用这个构建PHP 手册中的函数:

希望这有帮助

function runAsynchronously($path,$arguments) {
    $WshShell = new COM("WScript.Shell");  
    $oShellLink = $WshShell->CreateShortcut("temp.lnk");  
    $oShellLink->TargetPath = $path;  
    $oShellLink->Arguments = $arguments;  
    $oShellLink->WorkingDirectory = dirname($path);  
    $oShellLink->WindowStyle = 1;  
    $oShellLink->Save();  
    $oExec = $WshShell->Run("temp.lnk", 7, false);  
    unset($WshShell,$oShellLink,$oExec);  
    unlink("temp.lnk");  
}

I think what you are looking for is shell_exec

You can also use this built in function from the PHP Manual :

Hope this helps

function runAsynchronously($path,$arguments) {
    $WshShell = new COM("WScript.Shell");  
    $oShellLink = $WshShell->CreateShortcut("temp.lnk");  
    $oShellLink->TargetPath = $path;  
    $oShellLink->Arguments = $arguments;  
    $oShellLink->WorkingDirectory = dirname($path);  
    $oShellLink->WindowStyle = 1;  
    $oShellLink->Save();  
    $oExec = $WshShell->Run("temp.lnk", 7, false);  
    unset($WshShell,$oShellLink,$oExec);  
    unlink("temp.lnk");  
}
你是年少的欢喜 2024-12-03 16:35:37

exec() 用于 CLI 模式(本地)。玩你的 bash。

exec() is for CLI mode (locally). Play with your bash.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文